[BUGFIX] Fixed accessor

This commit is contained in:
Emma Stone
2017-08-28 17:52:17 +01:00
parent 2d072920db
commit fab489819a
2 changed files with 3 additions and 3 deletions
@@ -20,7 +20,7 @@ public interface Client {
void setInterface(int id); void setInterface(int id);
void setAmountOrNameInput(int amount); void setAmountOrNameInput(String text);
int[] getCurrentExp(); int[] getCurrentExp();
@@ -41,9 +41,9 @@ public class Interfaces {
} }
/** /**
* Sets the int by the given Amount * Sets the String by the given Amount
* *
* @param amount Amount to set * @param text Amount to set
*/ */
public static void setAmountOrNameInput(String text) { public static void setAmountOrNameInput(String text) {
Loader.getClient().setAmountOrNameInput(text); Loader.getClient().setAmountOrNameInput(text);