aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/RegionInfo.cs')
-rw-r--r--OpenSim/Framework/RegionInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 8f9b551..2f7faff 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -427,7 +427,7 @@ namespace OpenSim.Framework
427 if (name == String.Empty) 427 if (name == String.Empty)
428 throw new Exception("Cannot interactively create region with no name"); 428 throw new Exception("Cannot interactively create region with no name");
429 429
430 IConfig newRegion = source.AddConfig(name); 430 source.AddConfig(name);
431 431
432 creatingNew = true; 432 creatingNew = true;
433 } 433 }
@@ -437,7 +437,7 @@ namespace OpenSim.Framework
437 437
438 if (source.Configs[name] == null) 438 if (source.Configs[name] == null)
439 { 439 {
440 IConfig newRegion = source.AddConfig(name); 440 source.AddConfig(name);
441 441
442 creatingNew = true; 442 creatingNew = true;
443 } 443 }