mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00: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…
Reference in a new issue