Explorar el Código

Change static event to instance

Bepis hace 6 años
padre
commit
1f60010ebd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;