1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-31 01:07:39 -09:00

[NPH] fixed Phyrexian Unlife not adding poison counters (fixes )

This commit is contained in:
Evan Kranzler 2021-03-30 17:45:49 -04:00
parent 4cd50cf4e8
commit c842fd271c

View file

@ -65,7 +65,7 @@ class PhyrexianUnlifeEffect extends ReplacementEffectImpl {
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
((DamageEvent) event).setAsThoughInfect(true);
return true;
return false;
}
@Override