diff options
author | Charles Krinke | 2008-09-21 20:51:55 +0000 |
---|---|---|
committer | Charles Krinke | 2008-09-21 20:51:55 +0000 |
commit | 37da083de51b8033c71d3644dcfbc625fba7748e (patch) | |
tree | cf5399ddb50724ccd34b00a5286319ef000a8539 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | * minor: Remove some of the redundant asset id storage for now (diff) | |
download | opensim-SC_OLD-37da083de51b8033c71d3644dcfbc625fba7748e.zip opensim-SC_OLD-37da083de51b8033c71d3644dcfbc625fba7748e.tar.gz opensim-SC_OLD-37da083de51b8033c71d3644dcfbc625fba7748e.tar.bz2 opensim-SC_OLD-37da083de51b8033c71d3644dcfbc625fba7748e.tar.xz |
Mantis#2233. Thank you kindly, Idb, for a patch that solves:
The constants for llGetParcelDetails were missing
for DotNetEngine and XEngine.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 5bcb135..3194537 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -474,5 +474,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
474 | public const int CAMERA_FOCUS_Z = 20; | 474 | public const int CAMERA_FOCUS_Z = 20; |
475 | public const int CAMERA_POSITION_LOCKED = 21; | 475 | public const int CAMERA_POSITION_LOCKED = 21; |
476 | public const int CAMERA_FOCUS_LOCKED = 22; | 476 | public const int CAMERA_FOCUS_LOCKED = 22; |
477 | |||
478 | // constants for llGetParcelDetails | ||
479 | public const int PARCEL_DETAILS_NAME = 0; | ||
480 | public const int PARCEL_DETAILS_DESC = 1; | ||
481 | public const int PARCEL_DETAILS_OWNER = 2; | ||
482 | public const int PARCEL_DETAILS_GROUP = 3; | ||
483 | public const int PARCEL_DETAILS_AREA = 4; | ||
477 | } | 484 | } |
478 | } | 485 | } |