From 2e64d65910683d44227b407a45093ad4be50d936 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sat, 9 Dec 2017 16:09:53 -0700 Subject: [PATCH] Modify call to Utils.Dump() from the server context to not stop --- TShockAPI/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 7eea0927..b2f08d5f 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -5185,7 +5185,7 @@ namespace TShockAPI private static void CreateDumps(CommandArgs args) { TShock.Utils.DumpPermissionMatrix("PermissionMatrix.txt"); - TShock.Utils.Dump(); + TShock.Utils.Dump(false); args.Player.SendSuccessMessage("Your reference dumps have been created in the server folder."); return; }