diff --git a/TShockAPI/Tools.cs b/TShockAPI/Tools.cs index c0bc8a65..f5a44b7c 100755 --- a/TShockAPI/Tools.cs +++ b/TShockAPI/Tools.cs @@ -353,7 +353,7 @@ namespace TShockAPI public static void ShowFileToUser(int ply, string file) { string foo = ""; - TextReader tr = new StreamReader(Path.Combine(TShock.SavePath + file)); + TextReader tr = new StreamReader(Path.Combine(TShock.SavePath, file)); while ((foo = tr.ReadLine()) != null) { foo = foo.Replace("%map%", Main.worldName);