very minor reformatting of mainplugin

This commit is contained in:
BuildTools 2016-10-22 20:08:46 -04:00
parent 1897c1361b
commit 8624563a2b

View file

@ -26,25 +26,22 @@ public class HelloWorldPlugin extends JavaPlugin {
public static AbstractMap<String,String> deathMap = new HashMap<String,String>(); public static AbstractMap<String,String> deathMap = new HashMap<String,String>();
public void onEnable(){ public void onEnable(){
iie = Bukkit.getServer().getOfflinePlayer((UUID) UUID.fromString("633d0de1-4a67-46ff-bd8a-004fa8ce4858")).getPlayer();
board = Bukkit.getServer().getScoreboardManager().getMainScoreboard(); board = Bukkit.getServer().getScoreboardManager().getMainScoreboard();
if (board.getObjective("hardcoreTimeDead") != null){ //null check hardcoreTimeDead if (board.getObjective("hardcoreTimeDead") != null) //null check hardcoreTimeDead
hardcoreTimeDead = board.getObjective("hardcoreTimeDead"); hardcoreTimeDead = board.getObjective("hardcoreTimeDead");
}else{ else
hardcoreTimeDead = board.registerNewObjective("hardcoreTimeDead", "dummy"); hardcoreTimeDead = board.registerNewObjective("hardcoreTimeDead", "dummy");
}
if (board.getObjective("hardcoreInvite") != null){ //null check hardcoreInvite if (board.getObjective("hardcoreInvite") != null) //null check hardcoreInvite
hardcoreInvite = board.getObjective("hardcoreInvite"); hardcoreInvite = board.getObjective("hardcoreInvite");
}else{ else
hardcoreInvite = board.registerNewObjective("hardcoreInvite", "dummy"); hardcoreInvite = board.registerNewObjective("hardcoreInvite", "dummy");
}
if (board.getObjective("hardcoreOutBound") != null){ //null check hardcoreOutBound if (board.getObjective("hardcoreOutBound") != null) //null check hardcoreOutBound
hardcoreOutBound = board.getObjective("hardcoreOutBound"); hardcoreOutBound = board.getObjective("hardcoreOutBound");
}else{ else
hardcoreOutBound = board.registerNewObjective("hardcoreOutBound", "dummy"); hardcoreOutBound = board.registerNewObjective("hardcoreOutBound", "dummy");
}
registerCommands(); registerCommands();
getServer().getPluginManager().registerEvents(new JoinListener(this), this); getServer().getPluginManager().registerEvents(new JoinListener(this), this);