diff options
author | MW | 2008-07-09 11:01:26 +0000 |
---|---|---|
committer | MW | 2008-07-09 11:01:26 +0000 |
commit | 7db2e19500963620e59d0a319088d69faf297ac0 (patch) | |
tree | 43b6e6bf7bffafa4abf3bb0ca21eb2cb58657977 /OpenSim/Region/Environment/Modules | |
parent | Patch from Mike which removes a lexer warning in the LSL compiler. (diff) | |
download | opensim-SC-7db2e19500963620e59d0a319088d69faf297ac0.zip opensim-SC-7db2e19500963620e59d0a319088d69faf297ac0.tar.gz opensim-SC-7db2e19500963620e59d0a319088d69faf297ac0.tar.bz2 opensim-SC-7db2e19500963620e59d0a319088d69faf297ac0.tar.xz |
corrected the params types on IClientAPI.SendParcelMediaCommand. the command parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs index e3aa169..10971db 100644 --- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | |||
@@ -796,7 +796,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
796 | #endregion | 796 | #endregion |
797 | 797 | ||
798 | 798 | ||
799 | public void SendParcelMediaCommand(ParcelMediaCommandEnum flags, uint command, float time) | 799 | public void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time) |
800 | { | 800 | { |
801 | } | 801 | } |
802 | 802 | ||