Reformat ArenaListener fields.

What a mess, sheesh...
This commit is contained in:
Andreas Troelsen 2023-11-13 15:37:51 +01:00
parent 9e083a91de
commit a662157cbf
1 changed files with 13 additions and 13 deletions

View File

@ -111,19 +111,19 @@ public class ArenaListener
private MonsterManager monsters;
private ClassLimitManager classLimits;
private boolean softRestore,
softRestoreDrops,
protect;
private boolean monsterExp,
monsterInfight,
pvpOn, // pvp-enabled in config
pvpEnabled = false, // activated on first wave
foodRegen,
lockFoodLevel,
useClassChests;
private boolean allowTeleport,
canShare,
autoIgniteTNT;
private boolean softRestore;
private boolean softRestoreDrops;
private boolean protect;
private boolean monsterExp;
private boolean monsterInfight;
private boolean pvpOn;
private boolean pvpEnabled;
private boolean foodRegen;
private boolean lockFoodLevel;
private boolean useClassChests;
private boolean allowTeleport;
private boolean canShare;
private boolean autoIgniteTNT;
private int autoIgniteFuse;
private Set<Player> banned;