Skip to content

Commit 6faf127

Browse files
committed
Fixed bug where scene_05 would be Christmas during BA scene egg
1 parent 81da5bb commit 6faf127

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Patches/SceneEggPatch.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private static bool Prefix(string sceneFestivalName, ref string __result)
6565

6666
// Ignore the actual SceneEggs
6767
if (IgnoreSceneEggs(out _, SceneEggs.Arknights, SceneEggs.Cytus, SceneEggs.None,
68-
SceneEggs.Queen, SceneEggs.Touhou, SceneEggs.Wacca, SceneEggs.Miku, SceneEggs.BadApple, SceneEggs.RinLen)) return true;
68+
SceneEggs.Queen, SceneEggs.Touhou, SceneEggs.Wacca, SceneEggs.Miku, SceneEggs.BadApple, SceneEggs.RinLen, SceneEggs.BlueArchive)) return true;
6969

7070
if (sceneFestivalName == "scene_05") __result = "scene_05_christmas";
7171
return false;
@@ -83,7 +83,7 @@ private static bool Prefix(string bossFestivalName, ref string __result)
8383
// If the boss is not 0501_boss then there is no Christmas
8484
if (bossFestivalName != "0501_boss") return true;
8585
if (IgnoreSceneEggs(out _, SceneEggs.Arknights, SceneEggs.Cytus, SceneEggs.None,
86-
SceneEggs.Queen, SceneEggs.Touhou, SceneEggs.Wacca, SceneEggs.Miku, SceneEggs.BadApple, SceneEggs.RinLen)) return true;
86+
SceneEggs.Queen, SceneEggs.Touhou, SceneEggs.Wacca, SceneEggs.Miku, SceneEggs.BadApple, SceneEggs.RinLen, SceneEggs.BlueArchive)) return true;
8787

8888
__result = "0501_boss_christmas";
8989
return false;

0 commit comments

Comments
 (0)