Selaa lähdekoodia

Change static event to instance

Bepis 6 vuotta sitten
vanhempi
commit
1f60010ebd
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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;