One string was missing

This commit is contained in:
Yohann D'ANELLO
2020-11-27 22:21:16 +01:00
parent d2d74c97a4
commit 8f85093eb8
4 changed files with 16 additions and 6 deletions

View File

@ -404,7 +404,7 @@ class FightingEntity(Entity):
self.die()
return _("{name} takes {amount} damage.")\
.format(name=self.name, amount=str(amount)) \
+ (" " + "{name} dies.".format(name=self.name)
+ (" " + _("{name} dies.").format(name=self.name)
if self.health <= 0 else "")
def die(self) -> None: