update ClassLimitManager to provide a set of names of Players who have picked the provided ArenaClass. This will allow manipulating players of just a certain class more easily than before. One possibility is (mind you this is NOT implemented) adding potion effects to a class

This commit is contained in:
acstache
2013-07-01 23:51:26 -04:00
parent 22762bf521
commit 07637d087a
3 changed files with 28 additions and 12 deletions
+1 -1
View File
@@ -622,7 +622,7 @@ public class ArenaImpl implements Arena
ArenaPlayer ap = arenaPlayerMap.get(p);
if (inLobby(p)) {
if (ap.getArenaClass() != null) {
limitManager.playerLeftClass(ap.getArenaClass());
limitManager.playerLeftClass(ap.getArenaClass(), ap.getPlayer());
}
}