1
0

Set MAX_PLAYER_HEALTH to 1000 (it was set to 500 for quicker test runs)

This commit is contained in:
Kwarde 2024-01-15 17:20:50 +01:00
parent c5f61b178c
commit 1bd4a1f034

View File

@ -1,7 +1,7 @@
from wands import Wand
from spells import *
MAX_PLAYER_HEALTH = 500
MAX_PLAYER_HEALTH = 1000
class Player:
def __init__(self, name: str, wand: Wand):