Skip to content

Commit

Permalink
Minecraft: Fix plando connections #4048
Browse files Browse the repository at this point in the history
Plando connections was broken as a result of #3765
This fixes it.
  • Loading branch information
Seatori authored Oct 13, 2024
1 parent d4d777b commit f2ac937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/minecraft/Structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def set_pair(exit, struct):

# Connect plando structures first
if self.options.plando_connections:
for conn in self.plando_connections:
for conn in self.options.plando_connections:
set_pair(conn.entrance, conn.exit)

# The algorithm tries to place the most restrictive structures first. This algorithm always works on the
Expand Down

0 comments on commit f2ac937

Please sign in to comment.