Display full inventory

This commit is contained in:
Yohann D'ANELLO
2020-12-04 16:28:37 +01:00
parent fbfcd5dae0
commit a68b3a6d08
3 changed files with 23 additions and 4 deletions

View File

@ -55,6 +55,7 @@ class Game:
self.map.add_entity(self.player)
self.player.move(self.map.start_y, self.map.start_x)
self.map.spawn_random_entities(randint(3, 10))
self.inventory_menu.update_player(self.player)
def run(self, screen: Any) -> None:
"""