[MAT] Implement Tyvar, the Bellicose

This commit is contained in:
theelk801 2023-05-03 17:05:59 -04:00
parent 406d61a55f
commit 39d78aff2f
4 changed files with 133 additions and 6 deletions

View file

@ -13,7 +13,7 @@ public class ManaEvent extends GameEvent {
protected Mana mana;
public ManaEvent(EventType type, UUID targetId, Ability source, UUID playerId, Mana mana) {
super(type, targetId, source, playerId);
super(type, targetId, source, playerId, mana.count(), false);
this.mana = mana;
}