diff options
author | Justin Clark-Casey (justincc) | 2011-08-11 02:19:13 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-08-11 02:19:13 +0100 |
commit | ee22569c9262277467df9a4b15674a1472fa0b71 (patch) | |
tree | 7488dfd04814435041d98ec5e8ef73708dedca80 /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | comment out some of the currently less useful debug log messages (diff) | |
download | opensim-SC_OLD-ee22569c9262277467df9a4b15674a1472fa0b71.zip opensim-SC_OLD-ee22569c9262277467df9a4b15674a1472fa0b71.tar.gz opensim-SC_OLD-ee22569c9262277467df9a4b15674a1472fa0b71.tar.bz2 opensim-SC_OLD-ee22569c9262277467df9a4b15674a1472fa0b71.tar.xz |
only accept npc UUIDs to osNpc* functions, not names (except for create)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 56be9d9..f4a618b 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -170,10 +170,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
170 | 170 | ||
171 | 171 | ||
172 | key osNpcCreate(string user, string name, vector position, key cloneFrom); | 172 | key osNpcCreate(string user, string name, vector position, key cloneFrom); |
173 | LSL_Key osNpcSaveAppearance(string avatar, string notecardName); | 173 | LSL_Key osNpcSaveAppearance(key npc, string notecardName); |
174 | void osNpcLoadAppearance(string avatar, string notecardNameOrUuid); | 174 | void osNpcLoadAppearance(key npc, string notecardNameOrUuid); |
175 | void osNpcMoveTo(key npc, vector position); | 175 | void osNpcMoveTo(key npc, vector position); |
176 | void osNpcMoveToTarget(key npc, vector position, int noFly); | 176 | void osNpcMoveToTarget(key npc, vector position, int options); |
177 | void osNpcStopMoveTo(LSL_Key npc); | 177 | void osNpcStopMoveTo(LSL_Key npc); |
178 | void osNpcSay(key npc, string message); | 178 | void osNpcSay(key npc, string message); |
179 | void osNpcRemove(key npc); | 179 | void osNpcRemove(key npc); |