mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
cosmetics
This commit is contained in:
@@ -495,11 +495,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat
|
||||
|
||||
protected virtual void OnSimulatorFeaturesRequest(UUID agentID, ref OSDMap features)
|
||||
{
|
||||
OSD extras = new OSDMap();
|
||||
if (features.ContainsKey("OpenSimExtras"))
|
||||
extras = features["OpenSimExtras"];
|
||||
else
|
||||
features["OpenSimExtras"] = extras;
|
||||
OSD extras;
|
||||
if (!features.TryGetValue("OpenSimExtras", out extras))
|
||||
extras = new OSDMap();
|
||||
|
||||
if (m_SayRange == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user