1
0

replace print with log_debug

This commit is contained in:
andrea
2025-08-02 10:04:30 +02:00
parent 6c3fe6326f
commit cdb69699ab
6 changed files with 48 additions and 43 deletions

View File

@@ -2,6 +2,7 @@ from entities import player as _player
from entities import event_picker as _events
from entities import gamemap as _map
from entities.items import weapons as _weapons
from utils import logs as _logs
class BrSimArena():
@@ -30,13 +31,13 @@ class BrSimArena():
def next_day(self):
self.day+= 1
print(f'Giorno: {self.day}')
_logs.log_debug(f'Giorno: {self.day}')
alive_players_str= ', '.join([p.get_name() for p in self.get_alive_players()])
print(f'Giocatori vivi: {alive_players_str}')
_logs.log_debug(f'Giocatori vivi: {alive_players_str}')
death_players= self.get_death_players()
if (death_players):
death_players_str= ', '.join([p.get_name() for p in death_players])
print(f'Giocatori morti: {death_players_str}')
_logs.log_debug(f'Giocatori morti: {death_players_str}')
def get_alive_players(self):
res= []