remove leftover debug log
This commit is contained in:
parent
b7e52c4348
commit
3eacf80ecc
|
@ -256,7 +256,5 @@ def place_bosses(world, player: int):
|
||||||
#pick a boss to go into the remaining locations
|
#pick a boss to go into the remaining locations
|
||||||
remaining_boss = world.random.choice([boss for boss in placeable_bosses if all(
|
remaining_boss = world.random.choice([boss for boss in placeable_bosses if all(
|
||||||
can_place_boss(world, player, boss, loc, level) for loc, level in remaining_boss_locations)])
|
can_place_boss(world, player, boss, loc, level) for loc, level in remaining_boss_locations)])
|
||||||
logging.info([boss for boss in placeable_bosses if all(
|
|
||||||
can_place_boss(world, player, boss, loc, level) for loc, level in remaining_boss_locations)])
|
|
||||||
for loc, level in remaining_boss_locations:
|
for loc, level in remaining_boss_locations:
|
||||||
place_boss(world, player, remaining_boss, loc, level)
|
place_boss(world, player, remaining_boss, loc, level)
|
||||||
|
|
Loading…
Reference in New Issue