aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications
diff options
context:
space:
mode:
authorMW2007-06-17 19:25:04 +0000
committerMW2007-06-17 19:25:04 +0000
commit99a308007c6c13dc13a2184eb34014de94d75ea8 (patch)
treeb696f870406953b7465313e9eda4210c94f85a38 /OpenSim/OpenSim.LocalCommunications
parentEach Region will now generate a texture image of their terrain and this will ... (diff)
downloadopensim-SC_OLD-99a308007c6c13dc13a2184eb34014de94d75ea8.zip
opensim-SC_OLD-99a308007c6c13dc13a2184eb34014de94d75ea8.tar.gz
opensim-SC_OLD-99a308007c6c13dc13a2184eb34014de94d75ea8.tar.bz2
opensim-SC_OLD-99a308007c6c13dc13a2184eb34014de94d75ea8.tar.xz
Fixed inverted map texture problem.
Added(from trunk) the loading of terrain files defined in the region.xml files.
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
index 2293608..9b811ae 100644
--- a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
+++ b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
@@ -39,13 +39,13 @@ namespace OpenSim.LocalCommunications
39{ 39{
40 public class CommunicationsLocal : CommunicationsManager 40 public class CommunicationsLocal : CommunicationsManager
41 { 41 {
42 public LocalBackEndServices SandManager = new LocalBackEndServices(); 42 public LocalBackEndServices SandBoxManager = new LocalBackEndServices();
43 43
44 public CommunicationsLocal() 44 public CommunicationsLocal()
45 { 45 {
46 UserServer = null; 46 UserServer = null;
47 GridServer = SandManager; 47 GridServer = SandBoxManager;
48 InterRegion = SandManager; 48 InterRegion = SandBoxManager;
49 } 49 }
50 } 50 }
51} 51}