1
0

add items also on the telegram bot

This commit is contained in:
andrea
2025-11-15 18:40:34 +01:00
parent 445c51eec7
commit d40c7addfb
5 changed files with 18 additions and 7 deletions

View File

@@ -53,8 +53,7 @@ class BrSimMap():
self.game_map.append(_copy.deepcopy(width))
#_logs.log_debug(f'init_map_matrix: {self.game_map}')
_logs.log_debug(f'players: %s'% [(p.get_name(), p.get_coordinates()) for p in self.players])
print('##')
_logs.log_debug(f'items: %s' % [(p.get_name(), p.get_coordinates()) for p in self.items])
_logs.log_debug(f'items: %s' % [(i.get_name(), i.get_coordinates()) for i in self.items])
def populate_map(self):
for player in self.players: