diff options
author | Justin Clark-Casey (justincc) | 2014-01-20 19:34:55 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-01-20 19:34:55 +0000 |
commit | 2cf7478b9a33575273900ff995c74f1e8167f8b9 (patch) | |
tree | 10ee6a783456979aa63219cc387c078a7ec9fc65 /OpenSim/Region/CoreModules | |
parent | update OpenMetaverse.StructuredData to git master (bf4e9f654ff99c85e20b53e56f... (diff) | |
parent | Stop exceptions being generated on agent connection if a telehub object has b... (diff) | |
download | opensim-SC_OLD-2cf7478b9a33575273900ff995c74f1e8167f8b9.zip opensim-SC_OLD-2cf7478b9a33575273900ff995c74f1e8167f8b9.tar.gz opensim-SC_OLD-2cf7478b9a33575273900ff995c74f1e8167f8b9.tar.bz2 opensim-SC_OLD-2cf7478b9a33575273900ff995c74f1e8167f8b9.tar.xz |
Merge branch 'justincc-master'
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Estate/EstateManagementCommands.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateManagementCommands.cs b/OpenSim/Region/CoreModules/World/Estate/EstateManagementCommands.cs index 173b603..1659493 100644 --- a/OpenSim/Region/CoreModules/World/Estate/EstateManagementCommands.cs +++ b/OpenSim/Region/CoreModules/World/Estate/EstateManagementCommands.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
60 | 60 | ||
61 | public void Initialise() | 61 | public void Initialise() |
62 | { | 62 | { |
63 | m_log.DebugFormat("[ESTATE MODULE]: Setting up estate commands for region {0}", m_module.Scene.RegionInfo.RegionName); | 63 | // m_log.DebugFormat("[ESTATE MODULE]: Setting up estate commands for region {0}", m_module.Scene.RegionInfo.RegionName); |
64 | 64 | ||
65 | m_module.Scene.AddCommand("Regions", m_module, "set terrain texture", | 65 | m_module.Scene.AddCommand("Regions", m_module, "set terrain texture", |
66 | "set terrain texture <number> <uuid> [<x>] [<y>]", | 66 | "set terrain texture <number> <uuid> [<x>] [<y>]", |
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs index 17387da..3bd7b4a 100644 --- a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | |||
@@ -702,7 +702,7 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
702 | } | 702 | } |
703 | } | 703 | } |
704 | 704 | ||
705 | public void handleOnEstateManageTelehub(IClientAPI client, UUID invoice, UUID senderID, string cmd, uint param1) | 705 | public void HandleOnEstateManageTelehub(IClientAPI client, UUID invoice, UUID senderID, string cmd, uint param1) |
706 | { | 706 | { |
707 | SceneObjectPart part; | 707 | SceneObjectPart part; |
708 | 708 | ||
@@ -742,7 +742,9 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
742 | default: | 742 | default: |
743 | break; | 743 | break; |
744 | } | 744 | } |
745 | SendTelehubInfo(client); | 745 | |
746 | if (client != null) | ||
747 | SendTelehubInfo(client); | ||
746 | } | 748 | } |
747 | 749 | ||
748 | private void SendSimulatorBlueBoxMessage( | 750 | private void SendSimulatorBlueBoxMessage( |
@@ -1214,7 +1216,7 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
1214 | client.OnEstateRestartSimRequest += handleEstateRestartSimRequest; | 1216 | client.OnEstateRestartSimRequest += handleEstateRestartSimRequest; |
1215 | client.OnEstateChangeCovenantRequest += handleChangeEstateCovenantRequest; | 1217 | client.OnEstateChangeCovenantRequest += handleChangeEstateCovenantRequest; |
1216 | client.OnEstateChangeInfo += handleEstateChangeInfo; | 1218 | client.OnEstateChangeInfo += handleEstateChangeInfo; |
1217 | client.OnEstateManageTelehub += handleOnEstateManageTelehub; | 1219 | client.OnEstateManageTelehub += HandleOnEstateManageTelehub; |
1218 | client.OnUpdateEstateAccessDeltaRequest += handleEstateAccessDeltaRequest; | 1220 | client.OnUpdateEstateAccessDeltaRequest += handleEstateAccessDeltaRequest; |
1219 | client.OnSimulatorBlueBoxMessageRequest += SendSimulatorBlueBoxMessage; | 1221 | client.OnSimulatorBlueBoxMessageRequest += SendSimulatorBlueBoxMessage; |
1220 | client.OnEstateBlueBoxMessageRequest += SendEstateBlueBoxMessage; | 1222 | client.OnEstateBlueBoxMessageRequest += SendEstateBlueBoxMessage; |