Просмотр исходного кода

Change static event to instance

Bepis 6 лет назад
Родитель
Сommit
1f60010ebd
1 измененных файлов с 1 добавлено и 1 удалено
  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;