mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Implement The Scorpion God (HOU)
This commit is contained in:
parent
9aa7829010
commit
2681091bf2
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class TheScorpionGodTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
ZoneChangeEvent zEvent = (ZoneChangeEvent) event;
|
||||
if (zEvent.getFromZone() == Zone.BATTLEFIELD && zEvent.getToZone() == Zone.GRAVEYARD) {
|
||||
Permanent permanent = zEvent.getTarget();
|
||||
Permanent permanent = game.getPermanentOrLKIBattlefield(zEvent.getTargetId());
|
||||
if (permanent != null
|
||||
&& permanent.isCreature()
|
||||
&& permanent.getCounters(game).containsKey(CounterType.M1M1)) {
|
||||
|
|
Loading…
Reference in a new issue