Skip to content

Commit

Permalink
Fixed stupid bug in name equality in the Pikmin 2 file bundle gatherer.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed Nov 28, 2024
1 parent bf1b6d5 commit a7acbbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private void ExtractAllLevelScenes_(IFileBundleOrganizer organizer,

foreach (var abeMapDir in abeMapRootDir.GetExistingSubdirs()) {
var mapName = abeMapDir.Name;
if (mapName == "zukan") {
if (mapName.SequenceEqual("zukan")) {
continue;
}

Expand Down

0 comments on commit a7acbbd

Please sign in to comment.