From ba972b50ed1e6d78c63fd61f9b6ca7fe4732bcbb Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 13 Jul 2020 21:35:50 +0100 Subject: [PATCH] disable console command restart, that currently will just break everything ( there is also the restart module that will do the same if used ) --- OpenSim/Region/Application/OpenSim.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index d27f8b2db1..1f1dd8b6dd 100755 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -848,7 +848,8 @@ namespace OpenSim break; case "restart": - SceneManager.RestartCurrentScene(); + MainConsole.Instance.Output("Restart command disabled, because currently it is unreliable."); + //SceneManager.RestartCurrentScene(); break; } }