From 01f187ff35a4934bf4f32068bffeb20619eb455c Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 24 Oct 2017 11:12:33 -0400 Subject: [PATCH] Removes some stray absolute typing --- TGServerService/ServerInstance/DreamDaemon.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } }