Add Chat module extra feature settings to GridExtraFeatures service
parent
e0d8f42e6b
commit
3ec695e05b
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue