Mantis#2233. Thank you kindly, Idb, for a patch that solves:
The constants for llGetParcelDetails were missing for DotNetEngine and XEngine.0.6.0-stable
parent
3782d6aab7
commit
37da083de5
|
@ -2498,5 +2498,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
public const int CAMERA_FOCUS_Z = 20;
|
||||
public const int CAMERA_POSITION_LOCKED = 21;
|
||||
public const int CAMERA_FOCUS_LOCKED = 22;
|
||||
|
||||
// constants for llGetParcelDetails
|
||||
public const int PARCEL_DETAILS_NAME = 0;
|
||||
public const int PARCEL_DETAILS_DESC = 1;
|
||||
public const int PARCEL_DETAILS_OWNER = 2;
|
||||
public const int PARCEL_DETAILS_GROUP = 3;
|
||||
public const int PARCEL_DETAILS_AREA = 4;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -474,5 +474,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
|||
public const int CAMERA_FOCUS_Z = 20;
|
||||
public const int CAMERA_POSITION_LOCKED = 21;
|
||||
public const int CAMERA_FOCUS_LOCKED = 22;
|
||||
|
||||
// constants for llGetParcelDetails
|
||||
public const int PARCEL_DETAILS_NAME = 0;
|
||||
public const int PARCEL_DETAILS_DESC = 1;
|
||||
public const int PARCEL_DETAILS_OWNER = 2;
|
||||
public const int PARCEL_DETAILS_GROUP = 3;
|
||||
public const int PARCEL_DETAILS_AREA = 4;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue