Browse Source

next

master
gsd 5 months ago
parent
commit
2cab17fe27
  1. 3
      player.py

3
player.py

@ -136,6 +136,7 @@ class Player:
if not workshopmap2bsp(map_name) in self.lastplayAndGametime:
self.lastplayAndGametime[workshopmap2bsp(map_name)] = {"total":0, "lastplay":0}
self.lastplayAndGametime[workshopmap2bsp(map_name)]['lastplay'] = last_play
if "gametime" in self.current and self.current["gametime"]:
message += "Статистика по картам:\n"
for maps in self.current["gametime"].values():
@ -143,6 +144,8 @@ class Player:
if not workshopmap2bsp(map_name) in self.lastplayAndGametime:
self.lastplayAndGametime[workshopmap2bsp(map_name)] = {"total":0, "lastplay":0}
self.lastplayAndGametime[workshopmap2bsp(map_name)]["total"] = play_time
if len(list(self.lastplayAndGametime.keys())) > 0:
message += "Статистика игры:\n"
for map_name, values in self.lastplayAndGametime.items():
message += f"{map_name}\n{human_TIME(values['total']) if values['total'] > 0 else 'Не играл'} / {utime2human(values['lastplay']) if values['lastplay'] > 0 else 'Не играл'}\n\n"

Loading…
Cancel
Save