diff options
author | Justin Clarke Casey | 2008-01-07 02:12:06 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-07 02:12:06 +0000 |
commit | 3e75dede1b744fa9a6b7cad00039620de01fb2e2 (patch) | |
tree | aef7d627d0935d93a1cf01bf6ee16f2584c1a2ac /OpenSim/Region/Environment/Scenes/SceneBase.cs | |
parent | * Adding More to the MessageServer classes. (diff) | |
download | opensim-SC_OLD-3e75dede1b744fa9a6b7cad00039620de01fb2e2.zip opensim-SC_OLD-3e75dede1b744fa9a6b7cad00039620de01fb2e2.tar.gz opensim-SC_OLD-3e75dede1b744fa9a6b7cad00039620de01fb2e2.tar.bz2 opensim-SC_OLD-3e75dede1b744fa9a6b7cad00039620de01fb2e2.tar.xz |
Persistent prim inventory phase 5. Restart scripts contained in persisted prims on region start.
No user functionality exposed yet - no ini switch to enable persistence or restore. A bit more initial work to do.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneBase.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index bf8bedc..d4a4bb0 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -54,7 +54,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
54 | protected ulong m_regionHandle; | 54 | protected ulong m_regionHandle; |
55 | protected string m_regionName; | 55 | protected string m_regionName; |
56 | protected RegionInfo m_regInfo; | 56 | protected RegionInfo m_regInfo; |
57 | protected RegionStatus m_regStatus; | ||
58 | 57 | ||
59 | public TerrainEngine Terrain; | 58 | public TerrainEngine Terrain; |
60 | 59 | ||
@@ -68,6 +67,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
68 | protected string m_datastore; | 67 | protected string m_datastore; |
69 | 68 | ||
70 | private uint m_nextLocalId = 8880000; | 69 | private uint m_nextLocalId = 8880000; |
70 | |||
71 | private AssetCache m_assetCache; | 71 | private AssetCache m_assetCache; |
72 | 72 | ||
73 | public AssetCache AssetCache | 73 | public AssetCache AssetCache |
@@ -75,6 +75,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
75 | get { return m_assetCache; } | 75 | get { return m_assetCache; } |
76 | set { m_assetCache = value; } | 76 | set { m_assetCache = value; } |
77 | } | 77 | } |
78 | |||
79 | protected RegionStatus m_regStatus; | ||
78 | 80 | ||
79 | public RegionStatus Region_Status | 81 | public RegionStatus Region_Status |
80 | { | 82 | { |