Fixing player winning not saving game.

This commit is contained in:
marcins78@gmail.com
2011-10-27 12:32:44 +00:00
parent 591cc71d66
commit 41756e6fb8

View File

@@ -108,7 +108,7 @@ public class DefaultLotroGame implements LotroGame {
public void playerWon(String playerId, String reason) {
// Any remaining players have lost
Set<String> losers = new HashSet<String>(_allPlayers);
losers.removeAll(losers);
losers.removeAll(_losers.keySet());
losers.remove(playerId);
for (String loser : losers)