[DIS] Fix Rakdos Riteknife boost effect

This commit is contained in:
Alex W. Jackson 2022-02-24 19:40:52 -05:00
parent 9a9251e82e
commit 2a00609918

View file

@ -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;
}
}