diff --git a/Scripts/Gumps/AdminGump.cs b/Scripts/Gumps/AdminGump.cs index 46a69b709..6f101f0e0 100644 --- a/Scripts/Gumps/AdminGump.cs +++ b/Scripts/Gumps/AdminGump.cs @@ -2745,7 +2745,7 @@ namespace Server.Gumps InvokeCommand( "Save" ); if ( restart ) - Process.Start( Core.ExePath ); + Process.Start( Core.ExePath, Core.Arguments ); Core.Process.Kill(); } diff --git a/Scripts/Misc/CrashGuard.cs b/Scripts/Misc/CrashGuard.cs index 826adfab9..ea8687e5f 100644 --- a/Scripts/Misc/CrashGuard.cs +++ b/Scripts/Misc/CrashGuard.cs @@ -83,7 +83,7 @@ namespace Server.Misc try { - Process.Start( Core.ExePath ); + Process.Start( Core.ExePath, Core.Arguments ); Console.WriteLine( "done" ); e.Close = true;