Skip to content

Commit

Permalink
Skip processing splines for boss stages
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Jan 3, 2024
1 parent 297939f commit 60dbcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShadowRando/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ all same weapon type or random

if (setLayout_makeCCSplinesAWRidable.Checked)
{
if (stageDataIdentifier == "stg0210" && stageDataIdentifier == "stg0400" && stageDataIdentifier == "stg0700")
if (stageDataIdentifier == "stg0400" || stageDataIdentifier == "stg0700" || stageIdToModify >= 28)
continue;
var datOneFile = stageDataIdentifier + "_dat.one";
var datOneData = File.ReadAllBytes(Path.Combine("backup", "sets", stageDataIdentifier, datOneFile));
Expand Down

0 comments on commit 60dbcaa

Please sign in to comment.