Minecraft: Fix plando connections #4048
Plando connections was broken as a result of https://github.com/ArchipelagoMW/Archipelago/pull/3765 This fixes it.
This commit is contained in:
parent
d4d777b101
commit
f2ac937d1e
|
@ -29,7 +29,7 @@ def shuffle_structures(self: "MinecraftWorld") -> None:
|
||||||
|
|
||||||
# Connect plando structures first
|
# Connect plando structures first
|
||||||
if self.options.plando_connections:
|
if self.options.plando_connections:
|
||||||
for conn in self.plando_connections:
|
for conn in self.options.plando_connections:
|
||||||
set_pair(conn.entrance, conn.exit)
|
set_pair(conn.entrance, conn.exit)
|
||||||
|
|
||||||
# The algorithm tries to place the most restrictive structures first. This algorithm always works on the
|
# The algorithm tries to place the most restrictive structures first. This algorithm always works on the
|
||||||
|
|
Loading…
Reference in New Issue