fixed Ravenous Gigantotherium trigger

This commit is contained in:
Evan Kranzler 2020-04-30 08:11:43 -04:00
parent a91b210456
commit 1996168c1a

View file

@ -72,7 +72,7 @@ class RavenousGigantotheriumAbility extends EntersBattlefieldTriggeredAbility {
if (permanent == null) {
return false;
}
int power = Math.min(permanent.getPower().getValue(), 0);
int power = Math.max(permanent.getPower().getValue(), 0);
this.getEffects().clear();
this.addEffect(new DamageMultiEffect(power));
this.addEffect(new RavenousGigantotheriumEffect());