Update the player inventory when opening the menu/loading the game, fixes #72

This commit is contained in:
Yohann D'ANELLO
2021-01-10 19:52:28 +01:00
parent 2efa9d4575
commit 5694dd4dff
2 changed files with 2 additions and 0 deletions

View File

@ -435,6 +435,7 @@ class Game:
return
self.player = players[0]
self.inventory_menu.update_player(self.player)
self.map.compute_visibility(self.player.y, self.player.x,
self.player.vision)
self.display_actions(DisplayActions.UPDATE)