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
Charles Krinke 2008-09-21 20:51:55 +00:00
parent 3782d6aab7
commit 37da083de5
2 changed files with 14 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}