TntFill Fixed & Code Cleanup

This commit is contained in:
Driftay
2020-01-18 02:18:38 -05:00
parent e3e6f5561c
commit 51838df0d7
49 changed files with 460 additions and 399 deletions

View File

@@ -11,7 +11,7 @@ public class CmdSpawnerLock extends FCommand {
* @author Illyria Team
*/
public CmdSpawnerLock(){
public CmdSpawnerLock() {
super();
this.aliases.addAll(Aliases.spawnerlock);
@@ -20,7 +20,7 @@ public class CmdSpawnerLock extends FCommand {
}
@Override
public void perform(CommandContext context){
public void perform(CommandContext context) {
Conf.spawnerLock = !Conf.spawnerLock;
context.msg(TL.COMMAND_SPAWNER_LOCK_TOGGLED, Conf.spawnerLock ? FactionsPlugin.getInstance().color("&aEnabled") : FactionsPlugin.getInstance().color("&4Disabled"));
}