(String playerID, int level)
| 38 | } |
| 39 | |
| 40 | public boolean changeRank(String playerID, int level) { |
| 41 | boolean found = this.players.remove(playerID); |
| 42 | |
| 43 | if (found) get(level, true).players.add(playerID); |
| 44 | return found; |
| 45 | } |
| 46 | |
| 47 | |
| 48 | public static Seq<Rank> copy(boolean defaultRanks) { |