aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-02-13 19:03:18 +0000
committerJustin Clarke Casey2009-02-13 19:03:18 +0000
commitd307109e1af20c5b1b27743853236d7842d871f0 (patch)
tree200d85452cadddc5b05ab90e311c2b373ec9d1b7 /OpenSim/Region/Application/OpenSim.cs
parent* Quieten down log messages from the Friends module (diff)
downloadopensim-SC_OLD-d307109e1af20c5b1b27743853236d7842d871f0.zip
opensim-SC_OLD-d307109e1af20c5b1b27743853236d7842d871f0.tar.gz
opensim-SC_OLD-d307109e1af20c5b1b27743853236d7842d871f0.tar.bz2
opensim-SC_OLD-d307109e1af20c5b1b27743853236d7842d871f0.tar.xz
* refactor: move alert commands from Scene to DialogModule
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 17ced08..a0d5bd8 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -177,14 +177,6 @@ namespace OpenSim
177 "show queues", 177 "show queues",
178 "Show queue data", HandleShow); 178 "Show queue data", HandleShow);
179 179
180 m_console.Commands.AddCommand("region", false, "alert",
181 "alert <first> <last> <message>",
182 "Send an alert to a user", RunCommand);
183
184 m_console.Commands.AddCommand("region", false, "alert general",
185 "alert general <message>",
186 "Send an alert everyone", RunCommand);
187
188 m_console.Commands.AddCommand("region", false, "backup", 180 m_console.Commands.AddCommand("region", false, "backup",
189 "backup", 181 "backup",
190 "Persist objects to the database now", RunCommand); 182 "Persist objects to the database now", RunCommand);
@@ -547,7 +539,6 @@ namespace OpenSim
547 } 539 }
548 } 540 }
549 541
550
551 /// <summary> 542 /// <summary>
552 /// Runs commands issued by the server console from the operator 543 /// Runs commands issued by the server console from the operator
553 /// </summary> 544 /// </summary>
@@ -577,10 +568,6 @@ namespace OpenSim
577 m_sceneManager.BackupCurrentScene(); 568 m_sceneManager.BackupCurrentScene();
578 break; 569 break;
579 570
580 case "alert":
581 m_sceneManager.HandleAlertCommandOnCurrentScene(cmdparams);
582 break;
583
584 case "remove-region": 571 case "remove-region":
585 string regRemoveName = CombineParams(cmdparams, 0); 572 string regRemoveName = CombineParams(cmdparams, 0);
586 573