Fixes #5; Remove heal_reserve and directly add to healh points

This commit is contained in:
2024-05-06 14:57:50 +02:00
parent 67d7c8005d
commit 29ea3e7856
2 changed files with 2 additions and 12 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ async def effect_damage(effect: Effect, turn: "Turn", _target: str):
async def effect_heal(effect: Effect, turn: "Turn", _target: str):
turn.heal_reserve += effect.amount
turn.heal(effect.amount)
return True