You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Jagex placed the sell and buy x on store probably they thought was sent over as integer or an oversight of them (likely). Anyways currently is Integer.parseInt(input) and should be more like type of Short.parseUnsignedShort(input), that can be simulated that if the input > 65535 to throw NumberFormatException, else return the parsed num
The text was updated successfully, but these errors were encountered:
When Jagex placed the sell and buy x on store probably they thought was sent over as integer or an oversight of them (likely). Anyways currently is Integer.parseInt(input) and should be more like type of Short.parseUnsignedShort(input), that can be simulated that if the input > 65535 to throw NumberFormatException, else return the parsed num
The text was updated successfully, but these errors were encountered: