aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/world/World.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim.RegionServer/world/World.cs')
-rw-r--r--OpenSim.RegionServer/world/World.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim.RegionServer/world/World.cs b/OpenSim.RegionServer/world/World.cs
index 0291467..b0392a6 100644
--- a/OpenSim.RegionServer/world/World.cs
+++ b/OpenSim.RegionServer/world/World.cs
@@ -41,7 +41,7 @@ namespace OpenSim.world
41 private string m_regionName; 41 private string m_regionName;
42 private InventoryCache _inventoryCache; 42 private InventoryCache _inventoryCache;
43 private AssetCache _assetCache; 43 private AssetCache _assetCache;
44 private int updateLock; 44 private Object updateLock;
45 45
46 /// <summary> 46 /// <summary>
47 /// Creates a new World class, and a region to go with it. 47 /// Creates a new World class, and a region to go with it.
@@ -53,7 +53,7 @@ namespace OpenSim.world
53 { 53 {
54 try 54 try
55 { 55 {
56 updateLock = 0; 56 updateLock = null;
57 m_clientThreads = clientThreads; 57 m_clientThreads = clientThreads;
58 m_regionHandle = regionHandle; 58 m_regionHandle = regionHandle;
59 m_regionName = regionName; 59 m_regionName = regionName;