From 8ccb2f00008adc264a191201a458a474c3e0f836 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 5 Nov 2017 21:10:26 -0500 Subject: [PATCH] Fixes UpdateBridgeDLL copying the wrong dll in it's error handler --- TGServerService/ServerInstance/DreamDaemon.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TGServerService/ServerInstance/DreamDaemon.cs b/TGServerService/ServerInstance/DreamDaemon.cs index ab98cd4da7..bf7a96956a 100644 --- a/TGServerService/ServerInstance/DreamDaemon.cs +++ b/TGServerService/ServerInstance/DreamDaemon.cs @@ -566,7 +566,7 @@ namespace TGServerService { //ok the things being stupid and hasn't released the dll yet, try ONCE more Thread.Sleep(1000); - File.Copy(InterfacePath, BridgeDLLName, overwrite); + File.Copy(BridgePath, BridgeDLLName, overwrite); } catch (Exception e) {