aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule
diff options
context:
space:
mode:
authorMW2008-07-09 11:01:26 +0000
committerMW2008-07-09 11:01:26 +0000
commit7db2e19500963620e59d0a319088d69faf297ac0 (patch)
tree43b6e6bf7bffafa4abf3bb0ca21eb2cb58657977 /OpenSim/Region/Examples/SimpleModule
parentPatch from Mike which removes a lexer warning in the LSL compiler. (diff)
downloadopensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.zip
opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.tar.gz
opensim-SC_OLD-7db2e19500963620e59d0a319088d69faf297ac0.tar.bz2
opensim-SC_OLD-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/Examples/SimpleModule')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 0542c58..94983ee 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -771,7 +771,7 @@ namespace OpenSim.Region.Examples.SimpleModule
771 { 771 {
772 } 772 }
773 773
774 public void SendParcelMediaCommand(ParcelMediaCommandEnum flags, uint command, float time) 774 public void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time)
775 { 775 {
776 776
777 } 777 }