[VOW] Implemented Rending Flame

This commit is contained in:
Evan Kranzler 2021-10-31 14:25:35 -04:00
parent 8c97b47b21
commit 5203714d07
6 changed files with 91 additions and 0 deletions

View file

@ -2121,6 +2121,11 @@ public abstract class PlayerImpl implements Player, Serializable {
}
}
@Override
public int damage(int damage, Ability source, Game game) {
return doDamage(damage, source.getSourceId(), source, game, false, true, null);
}
@Override
public int damage(int damage, UUID attackerId, Ability source, Game game) {
return doDamage(damage, attackerId, source, game, false, true, null);