aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins
diff options
context:
space:
mode:
authorMelanie2010-12-03 19:02:42 +0100
committerMelanie2010-12-03 19:02:42 +0100
commit4407c4700ff67a0c64918765b8f6cae155ec015c (patch)
tree8b99753768cf0d05f4faefcbeb0248b1bbd0dfd7 /OpenSim/ApplicationPlugins
parentRevert "Revert "Trigger changed event with CHANGED_TELEPORT when teleporting ... (diff)
downloadopensim-SC_OLD-4407c4700ff67a0c64918765b8f6cae155ec015c.zip
opensim-SC_OLD-4407c4700ff67a0c64918765b8f6cae155ec015c.tar.gz
opensim-SC_OLD-4407c4700ff67a0c64918765b8f6cae155ec015c.tar.bz2
opensim-SC_OLD-4407c4700ff67a0c64918765b8f6cae155ec015c.tar.xz
Fix status responses in remote admin
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r--OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index a75cc60..9659883 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -2636,8 +2636,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController
2636 string text; 2636 string text;
2637 int health = scene.GetHealth(out flags, out text); 2637 int health = scene.GetHealth(out flags, out text);
2638 responseData["health"] = health; 2638 responseData["health"] = health;
2639 responseData["flags"] = health; 2639 responseData["flags"] = flags;
2640 responseData["message"] = health; 2640 responseData["message"] = text;
2641 2641
2642 response.Value = responseData; 2642 response.Value = responseData;
2643 } 2643 }