- Reverted previous commit (doesn't work as intended).

This commit is contained in:
Agetian
2017-06-27 03:38:23 +00:00
parent 6a43403d6c
commit 1ea54bcd45
2 changed files with 8 additions and 9 deletions

View File

@@ -184,15 +184,9 @@ public class GameAction {
zoneChangedEarly = true;
}
if (fromBattlefield) {
// Clean up the temporary Dash SVar when the Dashed card leaves the battlefield
if (c.getSVar("EndOfTurnLeavePlay").equals("Dash")) {
c.removeSVar("EndOfTurnLeavePlay");
}
// Clean up the temporary X announcement variable used by the AI
if (!zoneTo.is(ZoneType.Stack) && c.hasSVar("PayX")) {
c.removeSVar("PayX");
}
// Clean up the temporary Dash SVar when the Dashed card leaves the battlefield
if (fromBattlefield && c.getSVar("EndOfTurnLeavePlay").equals("Dash")) {
c.removeSVar("EndOfTurnLeavePlay");
}
if (fromBattlefield && !toBattlefield) {