mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
quest tokens won't suffer from sickness
This commit is contained in:
@@ -82,11 +82,9 @@ public class PhaseUtil {
|
|||||||
game.getCombat().reset();
|
game.getCombat().reset();
|
||||||
game.getCombat().setAttackingPlayer(turn);
|
game.getCombat().setAttackingPlayer(turn);
|
||||||
|
|
||||||
// Tokens starting game in play now actually suffer from Sum. Sickness
|
|
||||||
// again
|
|
||||||
final List<Card> list = turn.getCardsIncludePhasingIn(ZoneType.Battlefield);
|
final List<Card> list = turn.getCardsIncludePhasingIn(ZoneType.Battlefield);
|
||||||
for (final Card c : list) {
|
for (final Card c : list) {
|
||||||
if (turn.getTurn() > 0 || !c.isStartsGameInPlay()) {
|
if (turn.getTurn() >= 0 || !c.isStartsGameInPlay()) {
|
||||||
c.setSickness(false);
|
c.setSickness(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user