We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 054857a commit 68e4e44Copy full SHA for 68e4e44
1 file changed
NewMod/Patches/MainMenuPatch.cs
@@ -22,7 +22,6 @@ public static class MainMenuPatch
22
public static SpriteRenderer LogoSprite;
23
public static Texture2D _cachedCursor;
24
public static Transform RightPanel;
25
- public static bool _wraithRegistered = false;
26
27
[HarmonyPatch(nameof(MainMenuManager.Start))]
28
[HarmonyPostfix]
@@ -40,11 +39,6 @@ public static void StartPostfix(MainMenuManager __instance)
40
39
41
RightPanel = __instance.transform.Find("MainUI/AspectScaler/RightPanel");
42
43
- if (NewModDateTime.IsWraithCallerUnlocked && !_wraithRegistered)
44
- {
45
- _wraithRegistered = true;
46
- }
47
-
48
if (NewModDateTime.IsNewModBirthdayWeek)
49
{
50
Coroutines.Start(ApplyBirthdayUI(__instance));
0 commit comments