diff options
author | UbitUmarov | 2019-05-28 21:37:59 +0100 |
---|---|---|
committer | UbitUmarov | 2019-05-28 21:37:59 +0100 |
commit | 38e937f91b08a2e52c47d2353c57556f542a00c1 (patch) | |
tree | 48581bde45842a45bc1ed16b6ec614d23ba90c0d /OpenSim | |
parent | missing old flag VEHICLE_FLAG_NO_FLY_UP (diff) | |
download | opensim-SC-38e937f91b08a2e52c47d2353c57556f542a00c1.zip opensim-SC-38e937f91b08a2e52c47d2353c57556f542a00c1.tar.gz opensim-SC-38e937f91b08a2e52c47d2353c57556f542a00c1.tar.bz2 opensim-SC-38e937f91b08a2e52c47d2353c57556f542a00c1.tar.xz |
add sim feature AvatarHoverHeightEnabled; mantis 8535: make option MeshModelAllowTextureToInventory visible
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/AgentPreferencesModule.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/AgentPreferencesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/AgentPreferencesModule.cs index 8f65a69..b0ba5a3 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/AgentPreferencesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/AgentPreferencesModule.cs | |||
@@ -77,6 +77,9 @@ namespace OpenSim.Region.ClientStack.LindenCaps | |||
77 | { | 77 | { |
78 | RegisterCaps(agentID, caps); | 78 | RegisterCaps(agentID, caps); |
79 | }; | 79 | }; |
80 | ISimulatorFeaturesModule simFeatures = scene.RequestModuleInterface<ISimulatorFeaturesModule>(); | ||
81 | if(simFeatures != null) | ||
82 | simFeatures.AddFeature("AvatarHoverHeightEnabled",OSD.FromBoolean(true)); | ||
80 | } | 83 | } |
81 | 84 | ||
82 | public void PostInitialise() {} | 85 | public void PostInitialise() {} |