This commit is contained in:
Auric Vente 2024-07-21 09:11:16 -06:00
parent 0598722153
commit 69b32fd4fd
2 changed files with 13 additions and 5 deletions

View File

@ -22,6 +22,7 @@ from .settings import Settings
class Game:
timer: QTimer | None = None
playing_song: bool = False
last_update: int = 0
@staticmethod
def prepare() -> None:
@ -154,14 +155,21 @@ class Game:
if not ant:
return
num = random.randint(0, 12)
min_num = 0
max_num = 12
if num == 0:
Ants.merge()
return
num = random.randint(min_num, max_num)
if num == min_num:
if Game.last_update == min_num:
num = max_num
else:
Ants.merge()
return
status = ""
method = "normal"
Game.last_update = num
if num == 1:
ant.triumph += 1

View File

@ -27,7 +27,7 @@ class Utils:
Utils.rand_sentence = RandomSentence()
@staticmethod
def now() -> float:
def now() -> int:
return int(time.time())
@staticmethod