Don't spawn random entities on each level anymore

This commit is contained in:
Yohann D'ANELLO
2021-01-10 21:57:51 +01:00
parent 13e3628668
commit 01cdea6edc
3 changed files with 0 additions and 20 deletions

View File

@ -61,7 +61,6 @@ class Game:
self.player = Player()
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)
@property