mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[DIS] Fix Rakdos Riteknife boost effect
This commit is contained in:
parent
9a9251e82e
commit
2a00609918
1 changed files with 2 additions and 2 deletions
|
@ -108,8 +108,8 @@ class RakdosRiteknifeEffect extends ContinuousEffectImpl {
|
|||
return false;
|
||||
}
|
||||
int count = permanent.getCounters(game).getCount(CounterType.BLOOD);
|
||||
if (count < 1) {
|
||||
creature.getPower().boostValue(count);
|
||||
if (count > 0) {
|
||||
creature.addPower(count);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue