mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-20 21:40:27 -07:00
fixup type
This commit is contained in:
parent
e8bf4545cb
commit
a3431d7ff5
1 changed files with 1 additions and 1 deletions
|
|
@ -467,7 +467,7 @@ public final class DeveloperCommandPlugin extends CommandPlugin {
|
||||||
return true;
|
return true;
|
||||||
case "special":
|
case "special":
|
||||||
case "spec":
|
case "spec":
|
||||||
amount = args.length > 1 ? Integer.parseInt(args[1]) : 100;
|
int amount = args.length > 1 ? Integer.parseInt(args[1]) : 100;
|
||||||
player.getSettings().setSpecialEnergy(amount);
|
player.getSettings().setSpecialEnergy(amount);
|
||||||
return true;
|
return true;
|
||||||
case "god":
|
case "god":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue