fixed bug where player who comes first was not being added to ranks. (get nothing)

This commit is contained in:
Mini-Chiss 2014-07-02 10:57:30 -07:00
parent 31772196a9
commit 17c36026f6
2 changed files with 2 additions and 2 deletions

View File

@ -351,7 +351,7 @@ public class AntiHack extends MiniPlugin
player.kickPlayer(
C.cGold + "Mineplex Anti-Cheat" + "\n" +
C.cWhite + "You were kicked for suspicious movement." + "\n" +
C.cWhite + "Cheating will result in a " + C.cRed + "Permanent Ban" + C.cWhite + "." + "\n" +
C.cWhite + "Cheating may result in a " + C.cRed + "Permanent Ban" + C.cWhite + "." + "\n" +
C.cWhite + "If you were not cheating, you will not be banned."
);

View File

@ -366,7 +366,7 @@ public class GameTeam
for (Player player : GetPlayers(true))
{
_places.add(0, player);
placesClone.add(0, player);
}
return placesClone;