diff --git a/Fika.Core/UI/Patches/TarkovApplication_method_18_Patch.cs b/Fika.Core/UI/Patches/TarkovApplication_method_18_Patch.cs
index 1d0c3b0e..59fb152b 100644
--- a/Fika.Core/UI/Patches/TarkovApplication_method_18_Patch.cs
+++ b/Fika.Core/UI/Patches/TarkovApplication_method_18_Patch.cs
@@ -7,23 +7,23 @@
namespace Fika.Core.UI.Patches
{
- ///
- /// The intention of this patch is to enable FikaNotificationManager after NotificationManagerClass and the NotifierView are initialized.
- ///
- public class TarkovApplication_method_18_Patch : ModulePatch
- {
- protected override MethodBase GetTargetMethod()
- {
- return typeof(TarkovApplication).GetMethod(nameof(TarkovApplication.method_18));
- }
+ ///
+ /// The intention of this patch is to enable FikaNotificationManager after NotificationManagerClass and the NotifierView are initialized.
+ ///
+ public class TarkovApplication_method_18_Patch : ModulePatch
+ {
+ protected override MethodBase GetTargetMethod()
+ {
+ return typeof(TarkovApplication).GetMethod(nameof(TarkovApplication.method_16));
+ }
- [PatchPostfix]
- internal static void Postfix()
- {
- if (!FikaNotificationManager.Exists)
- {
- Singleton.Instance.gameObject.AddComponent();
- }
- }
- }
+ [PatchPostfix]
+ internal static void Postfix()
+ {
+ if (!FikaNotificationManager.Exists)
+ {
+ Singleton.Instance.gameObject.AddComponent();
+ }
+ }
+ }
}