Skip to content

Commit 436b28d

Browse files
committed
Exclude problematic cryptic castle splines; Final winforms version 0.4.1
1 parent efdb87f commit 436b28d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ShadowRando/MainForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public MainForm()
231231
InitializeComponent();
232232
}
233233

234-
const string programVersion = "0.4.1-dev";
234+
const string programVersion = "0.4.1";
235235
private static string hoverSoundPath = AppDomain.CurrentDomain.BaseDirectory + "res/hover.wav";
236236
private static string selectSoundPath = AppDomain.CurrentDomain.BaseDirectory + "res/select.wav";
237237
Settings settings;
@@ -1274,7 +1274,7 @@ private void RandomizeSETs(Random r)
12741274
{
12751275
var splines = SplineReader.ReadShadowSplineFile(datOneDataContent.Files[0]);
12761276
foreach (var spline in splines) {
1277-
if (spline.SplineType == 32 && spline.Name.Contains("_cc_"))
1277+
if (spline.SplineType == 32 && spline.Name.Contains("_cc_") && !spline.Name.Contains("stg0300_cc_dr_jn_208") && !spline.Name.Contains("stg0300_cc_pr_jn_210"))
12781278
spline.Setting2 = 1;
12791279
}
12801280
var updatedPATHPTP = SplineReader.ShadowSplinesToByteArray(stageDataIdentifier, splines);

0 commit comments

Comments
 (0)