12
0

code cleanup and hotfix

Dieser Commit ist enthalten in:
Yaruma3341 2020-01-07 23:25:27 +01:00
Ursprung d2e1ab5b7f
Commit e485927a4b

Datei anzeigen

@ -41,8 +41,10 @@ public class SWScoreboard {
return true;
}
public boolean removeScoreboard(Player player) {
if(playerBoards.containsKey(player)) {
public static boolean removeScoreboard(Player player) {
if(!playerBoards.containsKey(player))
return false;
switch (Core.getVersion()) {
case 8:
((SWScoreboard_8) playerBoards.get(player)).deleteScoreboard(player);
@ -68,8 +70,6 @@ public class SWScoreboard {
playerBoards.remove(player);
return true;
}
return false;
}
//Scoreboard Updater
static {