aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMW2007-09-04 16:39:44 +0000
committerMW2007-09-04 16:39:44 +0000
commit16cbc35f0cc26c9e8e75160f9ada1f56695cec5e (patch)
tree286a1331f9a0d23ddaa8fa2e4481ce3f09f20d6a /OpenSim/Region/Environment/Scenes/Scene.cs
parentSome work on Module loading/management. (diff)
downloadopensim-SC_OLD-16cbc35f0cc26c9e8e75160f9ada1f56695cec5e.zip
opensim-SC_OLD-16cbc35f0cc26c9e8e75160f9ada1f56695cec5e.tar.gz
opensim-SC_OLD-16cbc35f0cc26c9e8e75160f9ada1f56695cec5e.tar.bz2
opensim-SC_OLD-16cbc35f0cc26c9e8e75160f9ada1f56695cec5e.tar.xz
Fixed it so change-region works with region names that have spaces in them.
Fixed it so that change-region gives some feedback to show if its worked (found the region) or not.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index b92f8c8..3122c5d 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1135,7 +1135,6 @@ namespace OpenSim.Region.Environment.Scenes
1135 1135
1136 public void RegisterModuleInterface<M>( M mod) 1136 public void RegisterModuleInterface<M>( M mod)
1137 { 1137 {
1138 //Console.WriteLine("registering module interface " + typeof(M));
1139 if (!this.ModuleInterfaces.ContainsKey(typeof(M))) 1138 if (!this.ModuleInterfaces.ContainsKey(typeof(M)))
1140 { 1139 {
1141 ModuleInterfaces.Add(typeof(M), mod); 1140 ModuleInterfaces.Add(typeof(M), mod);
@@ -1255,6 +1254,7 @@ namespace OpenSim.Region.Environment.Scenes
1255 break; 1254 break;
1256 1255
1257 case "set-time": 1256 case "set-time":
1257 this.SetTimePhase(Convert.ToInt32(cmdparams[0]));
1258 break; 1258 break;
1259 1259
1260 case "backup": 1260 case "backup":