mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
[MIR] fixed Jungle Wurm calculating incorrectly (fixes #7449)
This commit is contained in:
parent
3d8d85fbbd
commit
4db79ae3c1
2 changed files with 15 additions and 16 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue