mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-07 08:39:13 +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
|
* @param amount Amount to set
|
||||||
*/
|
*/
|
||||||
public static void setAmountOrNameInput(int amount) {
|
public static void setAmountOrNameInput(String text) {
|
||||||
Loader.getClient().setAmountOrNameInput(amount);
|
Loader.getClient().setAmountOrNameInput(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user