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

@ -71,9 +71,6 @@ class Player(InventoryHolder, FightingEntity):
self.max_xp = self.level * 10
self.health = self.maxhealth
self.strength = self.strength + 1
# TODO Remove it, that's only fun
self.map.spawn_random_entities(randint(3 * self.level,
10 * self.level))
def add_xp(self, xp: int) -> None:
"""