added the opponent name in the history filename
This commit is contained in:
parent
e3a67eff6a
commit
19af7f454c
1 changed files with 2 additions and 1 deletions
|
@ -228,8 +228,9 @@ class Game(BaseGame):
|
||||||
@property
|
@property
|
||||||
def history_path(self):
|
def history_path(self):
|
||||||
return path_history / (
|
return path_history / (
|
||||||
datetime.now().strftime("%Y-%m-%d_%H-%M-%S") +
|
datetime.now().strftime("%Y-%m-%d %H-%M-%S") +
|
||||||
self.get_save_suffix() +
|
self.get_save_suffix() +
|
||||||
|
f" - Contre {self.name_enemy}" +
|
||||||
".bn-history"
|
".bn-history"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue