diff options
author | Justin Clark-Casey (justincc) | 2012-06-29 00:03:22 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-29 00:03:22 +0100 |
commit | f202c36106815949e56c58612770a00c65ab80a3 (patch) | |
tree | 12affb429b04b2d2abd7b3a804b9d71cd647a4e7 /OpenSim/Region/ClientStack/Linden | |
parent | Change AttachmentsModule.DetachSingleAttachmentToInv() to accept a SOG direct... (diff) | |
download | opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.zip opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.tar.gz opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.tar.bz2 opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.tar.xz |
Add IScene.Name for code clarity to replace the RegionInfo.RegionName used in many, many log messages.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/Tests/MockScene.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/Tests/MockScene.cs b/OpenSim/Region/ClientStack/Linden/UDP/Tests/MockScene.cs index d76927b..119a677 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/Tests/MockScene.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/Tests/MockScene.cs | |||
@@ -44,9 +44,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
44 | } | 44 | } |
45 | protected int m_objectNameCallsReceived; | 45 | protected int m_objectNameCallsReceived; |
46 | 46 | ||
47 | public MockScene() | 47 | public MockScene() : base(new RegionInfo(1000, 1000, null, null)) |
48 | { | 48 | { |
49 | m_regInfo = new RegionInfo(1000, 1000, null, null); | ||
50 | m_regStatus = RegionStatus.Up; | 49 | m_regStatus = RegionStatus.Up; |
51 | } | 50 | } |
52 | 51 | ||