Procházet zdrojové kódy

Change static event to instance

Bepis před 6 roky
rodič
revize
1f60010ebd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      BepInEx/Logging/BaseLogger.cs

+ 1 - 1
BepInEx/Logging/BaseLogger.cs

@@ -18,7 +18,7 @@ namespace BepInEx.Logging
         /// <summary>
         /// The listener event for an entry being logged.
         /// </summary>
-        public static event EntryLoggedEventHandler EntryLogged;
+        public event EntryLoggedEventHandler EntryLogged;
 
         
         public LogLevel DisplayedLevels = LogLevel.All;