* Once Upon A Time - Fixed that it was not always possible to cast it for free if allowed (fixes #6954).

This commit is contained in:
LevelX2 2020-08-10 14:55:33 +02:00
parent 300bb550df
commit 82e560f2ff

View file

@ -92,4 +92,11 @@ class OnceUponATimeWatcher extends Watcher {
public boolean getSpellsCastThisTurn(UUID playerId) {
return !castSpells.contains(playerId);
}
@Override
public void reset() {
castSpells.clear();
super.reset();
}
}