mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
commit
4824b96640
1 changed files with 2 additions and 1 deletions
|
|
@ -150,8 +150,9 @@ class UndeadAlchemistEffect extends ReplacementEffectImpl {
|
|||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
DamagePlayerEvent damageEvent = (DamagePlayerEvent) event;
|
||||
if (damageEvent.isCombatDamage()) {
|
||||
UUID controllerId = source.getControllerId();
|
||||
Permanent permanent = game.getPermanent(event.getSourceId());
|
||||
if (permanent != null && permanent.hasSubtype("Zombie", game)) {
|
||||
if (permanent != null && permanent.hasSubtype("Zombie", game) && permanent.getControllerId() == controllerId) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue