diff options
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) |