mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Ravenous Gigantotherium trigger
This commit is contained in:
parent
a91b210456
commit
1996168c1a
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue