diff --git a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.properties b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.properties index 88f6817f..e0900c94 100644 --- a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.properties +++ b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.properties @@ -44,7 +44,6 @@ REMOVE_HELP=§8/§eremove §8[§eplayer§8] NOT_FIGHTLEADER=§cYou are not the fight leader WIN_HELP=§8/§7win §8[§eteam §8or §etie§8] -INFO_RANKED=§7Ranked§8: §e{0} INFO_LEADER=§7Leader {0}§8: {1} INFO_SCHEMATIC=§7Schematic {0}§8: §e{1} §7from {2}, Rank: {3} diff --git a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/ai/DummyAI.java b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/ai/DummyAI.java index fd7e108c..e25ca065 100644 --- a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/ai/DummyAI.java +++ b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/ai/DummyAI.java @@ -37,7 +37,6 @@ public class DummyAI extends AI { public DummyAI(FightTeam team) { super(team, SteamwarUser.get("public")); - FightStatistics.unrank(); getEntity().setInvulnerable(true); } diff --git a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/commands/InfoCommand.java b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/commands/InfoCommand.java index 9cf59ca0..d8809691 100644 --- a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/commands/InfoCommand.java +++ b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/commands/InfoCommand.java @@ -51,7 +51,6 @@ public class InfoCommand implements CommandExecutor { if(!SteamwarUser.get(player.getUniqueId()).hasPerm(UserPerm.CHECK)) return false; - FightSystem.getMessage().send("INFO_RANKED", player, !FightStatistics.isUnranked()); for(FightTeam team : Fight.teams()) { if(!team.isLeaderless()) FightSystem.getMessage().send("INFO_LEADER", player, team.getColoredName(), team.getLeader().getEntity().getName()); diff --git a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java index 891315b9..6104f4c8 100644 --- a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java +++ b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java @@ -393,7 +393,6 @@ public class FightTeam { public void pasteSchem(SchematicNode schematic){ if(schematic.getSchemtype().check()) { - FightStatistics.unrank(); FightSystem.getMessage().broadcast("SCHEMATIC_UNCHECKED", getColoredName()); }