From cf34aad594570dcf4498bbffbf15ffa88f92cb91 Mon Sep 17 00:00:00 2001 From: White Date: Thu, 9 Apr 2015 15:58:10 +0930 Subject: [PATCH] Remove the pesky '/' that got in there somehow --- TShockAPI/SqlLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/SqlLog.cs b/TShockAPI/SqlLog.cs index e1ebbf78..083f76e7 100644 --- a/TShockAPI/SqlLog.cs +++ b/TShockAPI/SqlLog.cs @@ -212,7 +212,7 @@ namespace TShockAPI public void Debug(string message) { #if DEBUG - Write(message, TraceLevel.Verbose);\ + Write(message, TraceLevel.Verbose); #endif }