diff options
author | Adam Frisby | 2007-07-04 05:49:12 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-04 05:49:12 +0000 |
commit | 249ce4cf6f353dd59ebec27689e74a527c39a090 (patch) | |
tree | 9f4a8da19e5aef1a12be5279459c40d96aa29f0d /OpenSim/Region/ClientStack | |
parent | * Cleaning - attempting to get compiler warnings back down to zero. (diff) | |
download | opensim-SC_OLD-249ce4cf6f353dd59ebec27689e74a527c39a090.zip opensim-SC_OLD-249ce4cf6f353dd59ebec27689e74a527c39a090.tar.gz opensim-SC_OLD-249ce4cf6f353dd59ebec27689e74a527c39a090.tar.bz2 opensim-SC_OLD-249ce4cf6f353dd59ebec27689e74a527c39a090.tar.xz |
* More cleaning - Sugilite now only has build errors for "value is never used" properties (which I presume will be filled in over time)
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs b/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs index 7f961ef..64856ea 100644 --- a/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs +++ b/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs | |||
@@ -456,7 +456,7 @@ namespace OpenSim.Region.ClientStack | |||
456 | { | 456 | { |
457 | AssetLandmark lm = new AssetLandmark(lma); | 457 | AssetLandmark lm = new AssetLandmark(lma); |
458 | 458 | ||
459 | if (lm.RegionID == m_regionData.SimUUID) | 459 | if (lm.RegionID == m_world.RegionInfo.SimUUID) |
460 | { | 460 | { |
461 | TeleportLocalPacket tpLocal = new TeleportLocalPacket(); | 461 | TeleportLocalPacket tpLocal = new TeleportLocalPacket(); |
462 | 462 | ||
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 606ca1d..52749a1 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -75,7 +75,6 @@ namespace OpenSim.Region.ClientStack | |||
75 | private AssetCache m_assetCache; | 75 | private AssetCache m_assetCache; |
76 | private InventoryCache m_inventoryCache; | 76 | private InventoryCache m_inventoryCache; |
77 | private int cachedtextureserial = 0; | 77 | private int cachedtextureserial = 0; |
78 | private RegionInfo m_regionData; | ||
79 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; | 78 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; |
80 | private Encoding enc = Encoding.ASCII; | 79 | private Encoding enc = Encoding.ASCII; |
81 | 80 | ||