* setCheckPlayableState(false) in finally error handling (related to 133cc7342d).

This commit is contained in:
LevelX2 2019-12-26 14:26:16 +01:00
parent 2460408da8
commit 1798f5a151

View file

@ -1324,6 +1324,8 @@ public abstract class GameImpl implements Game, Serializable {
} else { } else {
throw new MageException("Error in testclass"); throw new MageException("Error in testclass");
} }
} finally {
setCheckPlayableState(false);
} }
state.getPlayerList().getNext(); state.getPlayerList().getNext();
} }
@ -1335,6 +1337,7 @@ public abstract class GameImpl implements Game, Serializable {
} finally { } finally {
resetLKI(); resetLKI();
clearAllBookmarks(); clearAllBookmarks();
setCheckPlayableState(false);
} }
} }