MC: fix Bee Trap name

This commit is contained in:
Fabian Dill 2022-05-27 02:09:56 +02:00 committed by KonoTyran
parent 28949853f7
commit 21a6b0143d
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class MinecraftWorld(World):
itempool += ["Dragon Egg Shard"] * self.world.egg_shards_available[self.player]
# Add bee traps if desired
bee_trap_quantity = ceil(self.world.bee_traps[self.player] * (len(self.location_names)-len(itempool)) * 0.01)
itempool += ["Bee Trap (Minecraft)"] * bee_trap_quantity
itempool += ["Bee Trap"] * bee_trap_quantity
# Fill remaining items with randomly generated junk
itempool += self.world.random.choices(list(junk_pool.keys()), weights=list(junk_pool.values()), k=len(self.location_names)-len(itempool))
# Convert itempool into real items