mentioned the wrong hashmap (confusing names!!!)

This commit is contained in:
ingmargoudt 2017-02-16 15:14:44 +01:00
parent 14c459b924
commit cf23d0905b

View file

@ -58,6 +58,6 @@ public class FirstSpellCastThisTurnWatcher extends Watcher {
}
public UUID getIdOfFirstCastSpell(UUID playerId) {
return playerFirstSpellCast.getOrDefault(playerId, playerFirstSpellCast.get(playerId));
return playerFirstSpellCast.getOrDefault(playerId, playerFirstCastSpell.get(playerId));
}
}