fixup type

This commit is contained in:
RedSparr0w 2019-09-20 11:40:28 +12:00
parent e8bf4545cb
commit a3431d7ff5

View file

@ -467,7 +467,7 @@ public final class DeveloperCommandPlugin extends CommandPlugin {
return true;
case "special":
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);
return true;
case "god":