aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-13 00:00:18 +0000
committerJustin Clark-Casey (justincc)2012-01-13 00:00:18 +0000
commit6e7154d55c4b5ab8dacd2bcbce3b5408470b7f48 (patch)
tree579b6671f0233274ce601cece958e46b04488c52 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
parentAdd missing assert to confirm owner delete succeeded to the end of TestOsNpcR... (diff)
downloadopensim-SC_OLD-6e7154d55c4b5ab8dacd2bcbce3b5408470b7f48.zip
opensim-SC_OLD-6e7154d55c4b5ab8dacd2bcbce3b5408470b7f48.tar.gz
opensim-SC_OLD-6e7154d55c4b5ab8dacd2bcbce3b5408470b7f48.tar.bz2
opensim-SC_OLD-6e7154d55c4b5ab8dacd2bcbce3b5408470b7f48.tar.xz
Removing osNpcCreateOwned(). Please use osNpcCreate(string user, string name, vector position, string notecard, int options) instead with option OS_NPC_CREATOR_OWNED
Please note that correct option name is OS_NPC_CREATOR_OWNED not OS_NPC_CREATE_OWNED as mistakenly put in a previous commit.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
index 25e4789..2c35f58 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
@@ -2077,12 +2077,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
2077 return retVal; 2077 return retVal;
2078 } 2078 }
2079 2079
2080 public LSL_Key osNpcCreateOwned(string firstname, string lastname, LSL_Vector position, string notecard)
2081 {
2082 CheckThreatLevel(ThreatLevel.High, "osNpcCreateOwned");
2083 return NpcCreate(firstname, lastname, position, notecard, true);
2084 }
2085
2086 public LSL_Key osNpcCreate(string firstname, string lastname, LSL_Vector position, string notecard) 2080 public LSL_Key osNpcCreate(string firstname, string lastname, LSL_Vector position, string notecard)
2087 { 2081 {
2088 CheckThreatLevel(ThreatLevel.High, "osNpcCreate"); 2082 CheckThreatLevel(ThreatLevel.High, "osNpcCreate");