diff options
author | Charles Krinke | 2008-06-28 16:18:47 +0000 |
---|---|---|
committer | Charles Krinke | 2008-06-28 16:18:47 +0000 |
commit | 2f70baee528ae94a3456c09ebdb60e9a24d7f7d0 (patch) | |
tree | 0e92de124ea526387a4125cd5e673de4c67a4993 /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |
parent | Mantis#1620. Applied Melanie's patch (diff) | |
download | opensim-SC-2f70baee528ae94a3456c09ebdb60e9a24d7f7d0.zip opensim-SC-2f70baee528ae94a3456c09ebdb60e9a24d7f7d0.tar.gz opensim-SC-2f70baee528ae94a3456c09ebdb60e9a24d7f7d0.tar.bz2 opensim-SC-2f70baee528ae94a3456c09ebdb60e9a24d7f7d0.tar.xz |
Mantis#1623. Thank you, Melanie for a patch that:
Fully defines the equality operators on the lsl types and plubs
in the script engine side of the work begun in 0001616 (aly, this one's for you)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index 07e3b41..47588b6 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -95,6 +95,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
95 | set { _Source = value; } | 95 | set { _Source = value; } |
96 | } | 96 | } |
97 | 97 | ||
98 | private int m_StartParam = 0; | ||
99 | public int StartParam | ||
100 | { | ||
101 | get { return m_StartParam; } | ||
102 | set { m_StartParam = value; } | ||
103 | } | ||
98 | 104 | ||
99 | public BuiltIn_Commands_BaseClass() | 105 | public BuiltIn_Commands_BaseClass() |
100 | { | 106 | { |
@@ -860,7 +866,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
860 | 866 | ||
861 | public LSL_Types.LSLInteger llGetStartParameter() | 867 | public LSL_Types.LSLInteger llGetStartParameter() |
862 | { | 868 | { |
863 | return m_LSL_Functions.llGetStartParameter(); | 869 | return m_StartParam; |
864 | } | 870 | } |
865 | 871 | ||
866 | public void llGodLikeRezObject(string inventory, vector pos) | 872 | public void llGodLikeRezObject(string inventory, vector pos) |