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 | |
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')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 7 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index 825ecf2..528df40 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -2498,5 +2498,12 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2498 | public const int CAMERA_FOCUS_Z = 20; | 2498 | public const int CAMERA_FOCUS_Z = 20; |
2499 | public const int CAMERA_POSITION_LOCKED = 21; | 2499 | public const int CAMERA_POSITION_LOCKED = 21; |
2500 | public const int CAMERA_FOCUS_LOCKED = 22; | 2500 | public const int CAMERA_FOCUS_LOCKED = 22; |
2501 | |||
2502 | // constants for llGetParcelDetails | ||
2503 | public const int PARCEL_DETAILS_NAME = 0; | ||
2504 | public const int PARCEL_DETAILS_DESC = 1; | ||
2505 | public const int PARCEL_DETAILS_OWNER = 2; | ||
2506 | public const int PARCEL_DETAILS_GROUP = 3; | ||
2507 | public const int PARCEL_DETAILS_AREA = 4; | ||
2501 | } | 2508 | } |
2502 | } | 2509 | } |
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 | } |