Skip to content

Commit

Permalink
fix(Catlas): Room connectors aren't added to a unique room
Browse files Browse the repository at this point in the history
fixes issues with show before start
  • Loading branch information
My-Name-Is-Jeff committed Feb 24, 2025
1 parent 1d3f042 commit e90f2c3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ object DungeonScanner {
} else if (it.data.type == RoomType.ENTRANCE) {
Door(x, z, DoorType.ENTRANCE)
} else {
Room(x, z, it.data).apply { isSeparator = true }
Room(x, z, it.data).apply {
isSeparator = true
uniqueRoom = DungeonInfo.uniqueRooms.find { it.name == data.name }
}
}
}
}
Expand Down

0 comments on commit e90f2c3

Please sign in to comment.