diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 4c4d173..9745ae6 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -4671,6 +4671,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
4671 | flags |= ScriptBaseClass.AGENT_TYPING; | 4671 | flags |= ScriptBaseClass.AGENT_TYPING; |
4672 | } | 4672 | } |
4673 | 4673 | ||
4674 | string agentMovementAnimation = agent.GetMovementAnimation(); | ||
4675 | if (agentMovementAnimation == "WALK" || agentMovementAnimation == "CROUCHWALK") | ||
4676 | { | ||
4677 | flags |= ScriptBaseClass.AGENT_WALKING; | ||
4678 | } | ||
4679 | |||
4674 | //NotImplemented("llGetAgentInfo"); | 4680 | //NotImplemented("llGetAgentInfo"); |
4675 | 4681 | ||
4676 | return flags; | 4682 | return flags; |