aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Server/Handlers/Grid/GridExtraFeaturesHandlers.cs9
-rw-r--r--bin/Robust.HG.ini.example9
-rw-r--r--bin/Robust.ini.example9
3 files changed, 27 insertions, 0 deletions
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
82 case "ExportSupported": 82 case "ExportSupported":
83 m_ExtraFeatures["ExportSupported"] = value; 83 m_ExtraFeatures["ExportSupported"] = value;
84 break; 84 break;
85 case "WhisperDistance":
86 m_ExtraFeatures["whisper-range"] = value;
87 break;
88 case "SayDistance":
89 m_ExtraFeatures["say-range"] = value;
90 break;
91 case "ShoutDistance":
92 m_ExtraFeatures["shout-range"] = value;
93 break;
85 default: 94 default:
86 m_Log.InfoFormat("{0} not yet supported."); 95 m_Log.InfoFormat("{0} not yet supported.");
87 break; 96 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
504 ; Grid Destination Guide URI 504 ; Grid Destination Guide URI
505 ;DestinationGuideURI = "http://example.com:8200/" 505 ;DestinationGuideURI = "http://example.com:8200/"
506 506
507 ; Chat Whisper Distance
508 ;WhisperDistance = 10
509
510 ; Chat Say Distance
511 ;SayDistance = 20
512
513 ; Chat Shout Distance
514 ;ShoutDistance = 100
515
507 ; Grid Allow Export 516 ; Grid Allow Export
508 ;ExportSupported = true 517 ;ExportSupported = true
509 518
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
476 ; Grid Destination Guide URI 476 ; Grid Destination Guide URI
477 ;DestinationGuideURI = "http://example.com:8200/" 477 ;DestinationGuideURI = "http://example.com:8200/"
478 478
479 ; Chat Whisper Distance
480 ;WhisperDistance = 10
481
482 ; Chat Say Distance
483 ;SayDistance = 20
484
485 ; Chat Shout Distance
486 ;ShoutDistance = 100
487
479 ; Grid Allow Export 488 ; Grid Allow Export
480 ;ExportSupported = true 489 ;ExportSupported = true
481 490