aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-10-20 07:47:20 +0000
committerMelanie Thielker2008-10-20 07:47:20 +0000
commitcaf10245af091498147cf707d30b34cef6ab588b (patch)
treed9a5fa8a4255cc21005aef5e1ee0344f1dc95f6a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
parentThank you kindly, Idb for a patch that solves: (diff)
downloadopensim-SC_OLD-caf10245af091498147cf707d30b34cef6ab588b.zip
opensim-SC_OLD-caf10245af091498147cf707d30b34cef6ab588b.tar.gz
opensim-SC_OLD-caf10245af091498147cf707d30b34cef6ab588b.tar.bz2
opensim-SC_OLD-caf10245af091498147cf707d30b34cef6ab588b.tar.xz
Mantis #2438
Fix llSetVehicleFloatParam to accept LSL_Float
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index 52916b5..78a183f 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1554,7 +1554,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1554 m_LSL_Functions.llSetVehicleFlags(flags); 1554 m_LSL_Functions.llSetVehicleFlags(flags);
1555 } 1555 }
1556 1556
1557 public void llSetVehicleFloatParam(int param, float value) 1557 public void llSetVehicleFloatParam(int param, LSL_Float value)
1558 { 1558 {
1559 m_LSL_Functions.llSetVehicleFloatParam(param, value); 1559 m_LSL_Functions.llSetVehicleFloatParam(param, value);
1560 } 1560 }