From 3ec695e05b108dac3a3407d70750ca748c0dc00c Mon Sep 17 00:00:00 2001 From: BlueWall Date: Wed, 30 Jul 2014 15:01:26 -0400 Subject: Add Chat module extra feature settings to GridExtraFeatures service --- OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs | 9 +++++++++ bin/Robust.HG.ini.example | 9 +++++++++ bin/Robust.ini.example | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs b/OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs index 8b9890c..6a62cfc 100644 --- a/OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs +++ b/OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs @@ -82,6 +82,15 @@ namespace OpenSim.Server.Handlers.Grid case "ExportSupported": m_ExtraFeatures["ExportSupported"] = value; break; + case "WhisperDistance": + m_ExtraFeatures["whisper-range"] = value; + break; + case "SayDistance": + m_ExtraFeatures["say-range"] = value; + break; + case "ShoutDistance": + m_ExtraFeatures["shout-range"] = value; + break; default: m_Log.InfoFormat("{0} not yet supported."); break; diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example index fc81ef0..2319117 100644 --- a/bin/Robust.HG.ini.example +++ b/bin/Robust.HG.ini.example @@ -504,6 +504,15 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset ; Grid Destination Guide URI ;DestinationGuideURI = "http://example.com:8200/" + ; Chat Whisper Distance + ;WhisperDistance = 10 + + ; Chat Say Distance + ;SayDistance = 20 + + ; Chat Shout Distance + ;ShoutDistance = 100 + ; Grid Allow Export ;ExportSupported = true diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example index 74987d4..99a932d 100644 --- a/bin/Robust.ini.example +++ b/bin/Robust.ini.example @@ -476,6 +476,15 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto ; Grid Destination Guide URI ;DestinationGuideURI = "http://example.com:8200/" + ; Chat Whisper Distance + ;WhisperDistance = 10 + + ; Chat Say Distance + ;SayDistance = 20 + + ; Chat Shout Distance + ;ShoutDistance = 100 + ; Grid Allow Export ;ExportSupported = true -- cgit v1.1