diff options
author | Justin Clark-Casey (justincc) | 2011-12-07 22:40:23 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-12-07 22:40:23 +0000 |
commit | 2b4de8f8817e823221aad6a753fe31b1bbb73c58 (patch) | |
tree | 0cddd10271ef4c9501adbb8e1ab138b2821bc770 /OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |
parent | Refactor RemoteAdminPlugin so that every xmlrpc method calls a common block o... (diff) | |
download | opensim-SC_OLD-2b4de8f8817e823221aad6a753fe31b1bbb73c58.zip opensim-SC_OLD-2b4de8f8817e823221aad6a753fe31b1bbb73c58.tar.gz opensim-SC_OLD-2b4de8f8817e823221aad6a753fe31b1bbb73c58.tar.bz2 opensim-SC_OLD-2b4de8f8817e823221aad6a753fe31b1bbb73c58.tar.xz |
Have admin_load_heighmap and admin_save_heightmap xmlrpcadmin methods return success = true on success rather than false
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 1da7c35..8a1718f 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -339,7 +339,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
339 | 339 | ||
340 | LoadHeightmap(file, regionID); | 340 | LoadHeightmap(file, regionID); |
341 | 341 | ||
342 | responseData["success"] = false; | 342 | responseData["success"] = true; |
343 | 343 | ||
344 | m_log.Info("[RADMIN]: Load height maps request complete"); | 344 | m_log.Info("[RADMIN]: Load height maps request complete"); |
345 | } | 345 | } |
@@ -371,7 +371,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
371 | 371 | ||
372 | terrainModule.SaveToFile(file); | 372 | terrainModule.SaveToFile(file); |
373 | 373 | ||
374 | responseData["success"] = false; | 374 | responseData["success"] = true; |
375 | 375 | ||
376 | m_log.Info("[RADMIN]: Save height maps request complete"); | 376 | m_log.Info("[RADMIN]: Save height maps request complete"); |
377 | } | 377 | } |