[MIR] fixed Jungle Wurm calculating incorrectly (fixes #7449)

This commit is contained in:
Evan Kranzler 2021-01-26 17:05:32 -05:00
parent 3d8d85fbbd
commit 4db79ae3c1
2 changed files with 15 additions and 16 deletions

View file

@ -8,13 +8,12 @@ import mage.game.Game;
import mage.game.combat.CombatGroup;
/**
*
* @author Markedagain
*/
public class BlockedCreatureCount implements DynamicValue {
private String message;
boolean beyondTheFirst;
private final String message;
private final boolean beyondTheFirst;
public BlockedCreatureCount() {
this("each creature blocking it");
@ -26,7 +25,7 @@ public class BlockedCreatureCount implements DynamicValue {
public BlockedCreatureCount(String message, boolean beyondTheFirst) {
this.message = message;
//this.beyondTheFirst = beyondTheFirst; this was never set in the original, so not setting here just in case ??
this.beyondTheFirst = beyondTheFirst;
}
public BlockedCreatureCount(final BlockedCreatureCount dynamicValue) {