mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-03 08:39:09 +00:00
[BUGFIX] Fixed #setAmountOrNameInput
Method is currently setting an `int` into a `String` field. This should fix it
This commit is contained in:
@@ -45,8 +45,8 @@ public class Interfaces {
|
||||
*
|
||||
* @param amount Amount to set
|
||||
*/
|
||||
public static void setAmountOrNameInput(int amount) {
|
||||
Loader.getClient().setAmountOrNameInput(amount);
|
||||
public static void setAmountOrNameInput(String text) {
|
||||
Loader.getClient().setAmountOrNameInput(text);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user