mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
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)
This commit is contained in:
@@ -95,6 +95,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
set { _Source = value; }
|
||||
}
|
||||
|
||||
private int m_StartParam = 0;
|
||||
public int StartParam
|
||||
{
|
||||
get { return m_StartParam; }
|
||||
set { m_StartParam = value; }
|
||||
}
|
||||
|
||||
public BuiltIn_Commands_BaseClass()
|
||||
{
|
||||
@@ -860,7 +866,7 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
|
||||
public LSL_Types.LSLInteger llGetStartParameter()
|
||||
{
|
||||
return m_LSL_Functions.llGetStartParameter();
|
||||
return m_StartParam;
|
||||
}
|
||||
|
||||
public void llGodLikeRezObject(string inventory, vector pos)
|
||||
|
||||
Reference in New Issue
Block a user