mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Prowl - Fixed that a Mutavault that did damage was not taken unto acount to fulfill the prowl condition.
This commit is contained in:
parent
43460c1256
commit
b4d1607568
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ public class ProwlWatcher extends Watcher {
|
|||
if (dEvent.isCombatDamage()) {
|
||||
Permanent creature = game.getPermanent(dEvent.getSourceId());
|
||||
if (creature != null && !allSubtypes.contains(creature.getControllerId())) {
|
||||
if (creature.getAbilities().containsKey(ChangelingAbility.getInstance().getId())) {
|
||||
if (creature.getAbilities().containsKey(ChangelingAbility.getInstance().getId()) || creature.getSubtype().contains(ChangelingAbility.ALL_CREATURE_TYPE)) {
|
||||
allSubtypes.add(creature.getControllerId());
|
||||
} else {
|
||||
Set<String> subtypes = damagingSubtypes.get(creature.getControllerId());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue