Skip to content

Commit dca7095

Browse files
committed
fix casing on commands bin
1 parent 8017cf7 commit dca7095

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CathodeLib/Scripts/CATHODE/Commands/Parsers/CommandsBIN.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,8 @@ public static void Read(byte[] content, out ShortGuid[] EntryPoints, out List<Co
479479
}
480480
}
481481

482-
EntryPoints[1] = Entries.FirstOrDefault(o => o.name == "GLOBAL").shortGUID;
483-
EntryPoints[2] = Entries.FirstOrDefault(o => o.name == "PAUSEMENU").shortGUID;
482+
EntryPoints[1] = Entries.FirstOrDefault(o => o.name.ToUpper() == "GLOBAL").shortGUID;
483+
EntryPoints[2] = Entries.FirstOrDefault(o => o.name.ToUpper() == "PAUSEMENU").shortGUID;
484484
}
485485

486486
public static void Write(ShortGuid[] EntryPoints, List<Composite> Entries, out byte[] content)

0 commit comments

Comments
 (0)