diff --git a/TGServerService/ServerInstance/DreamDaemon.cs b/TGServerService/ServerInstance/DreamDaemon.cs index 36a4e9c703..3afca1e6c1 100644 --- a/TGServerService/ServerInstance/DreamDaemon.cs +++ b/TGServerService/ServerInstance/DreamDaemon.cs @@ -532,7 +532,7 @@ namespace TGServerService return; //no need } File.Copy(InterfacePath, InterfaceDLLName, overwrite); - Service.WriteInfo("Updated interface DLL", TGServerService.EventID.InterfaceDLLUpdated); + Service.WriteInfo("Updated interface DLL", EventID.InterfaceDLLUpdated); } catch { @@ -545,7 +545,7 @@ namespace TGServerService catch (Exception e) { //intentionally using the fi - Service.WriteError("Failed to update interface DLL! Error: " + e.ToString(), TGServerService.EventID.InterfaceDLLUpdateFail); + Service.WriteError("Failed to update interface DLL! Error: " + e.ToString(), EventID.InterfaceDLLUpdateFail); } } }