FIX issue where all players start at 1 health
release-tag / release-image (push) Successful in 18s

This commit is contained in:
2024-05-15 10:56:38 +02:00
parent 853ce1efe5
commit 963a99aa76
+1 -1
View File
@@ -30,7 +30,7 @@ class Game(Serializable):
started: bool
ended: bool
default_health = 1
default_health = 50
current_turn: Team | None