aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-17 01:57:23 +0100
committerJustin Clark-Casey (justincc)2011-10-17 01:57:23 +0100
commit79c13cd99728f09a5175dff1750dcb9d7790fcdc (patch)
tree0c3036c1d97f4ba33044a19c86ee6f979246ed22
parentImplement osNpcStand(<npc-id>) (diff)
downloadopensim-SC_OLD-79c13cd99728f09a5175dff1750dcb9d7790fcdc.zip
opensim-SC_OLD-79c13cd99728f09a5175dff1750dcb9d7790fcdc.tar.gz
opensim-SC_OLD-79c13cd99728f09a5175dff1750dcb9d7790fcdc.tar.bz2
opensim-SC_OLD-79c13cd99728f09a5175dff1750dcb9d7790fcdc.tar.xz
rename OS_NPC_SIT_IMMEDIATE to OS_NPC_SIT_NOW since it's shorter and more understandable
This makes something like osNpcSit(npc, llGetKey(), OS_NPC_IMMEDIATE) now become osNpcSit(npc, llGetKey(), OS_NPC_SIT_NOW); This is why it's in development :)
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
index d36b550..4b008a4 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
@@ -600,7 +600,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
600 public const int OS_NPC_NO_FLY = 1; 600 public const int OS_NPC_NO_FLY = 1;
601 public const int OS_NPC_LAND_AT_TARGET = 2; 601 public const int OS_NPC_LAND_AT_TARGET = 2;
602 602
603 public const int OS_NPC_SIT_IMMEDIATE = 0; 603 public const int OS_NPC_SIT_NOW = 0;
604 604
605 public const string URL_REQUEST_GRANTED = "URL_REQUEST_GRANTED"; 605 public const string URL_REQUEST_GRANTED = "URL_REQUEST_GRANTED";
606 public const string URL_REQUEST_DENIED = "URL_REQUEST_DENIED"; 606 public const string URL_REQUEST_DENIED = "URL_REQUEST_DENIED";