Skip to content

Commit

Permalink
Fix special terminal using the wrong branch
Browse files Browse the repository at this point in the history
  • Loading branch information
brgmnn committed Jul 14, 2024
1 parent 002a636 commit 7d39ced
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void Build_SpecialTerminalCommand(BuildDirector director, Level level)
GoToWinCondition_ToMainLayer = "Go back to the main objective and complete the expedition.";

// Place the terminal in the last zone
var node = (ZoneNode)level.Planner.GetLastZone(director.Bulkhead)!;
var node = (ZoneNode)level.Planner.GetLastZone(director.Bulkhead, "find_items")!;
var zoneIndex = node.ZoneNumber;

dataLayer.ObjectiveData.ZonePlacementDatas.Add(
Expand Down

0 comments on commit 7d39ced

Please sign in to comment.