move structure linking to create_regions instead of generate_basic

This commit is contained in:
espeon65536
2021-07-14 19:13:25 -05:00
committed by Fabian Dill
parent 719e21ac8c
commit 3d67e1dbdb

View File

@@ -39,7 +39,6 @@ class MinecraftWorld(World):
def generate_basic(self):
link_minecraft_structures(self.world, self.player)
# Generate item pool
itempool = []
@@ -82,6 +81,7 @@ class MinecraftWorld(World):
return ret
self.world.regions += [MCRegion(*r) for r in mc_regions]
link_minecraft_structures(self.world, self.player)
def generate_output(self):