diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index af04951..3db5dd2 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3482,13 +3482,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3482 | 3482 | ||
3483 | if (item == null) | 3483 | if (item == null) |
3484 | { | 3484 | { |
3485 | Error("llRezAtRoot", "Can't find object '" + inventory + "'"); | 3485 | Error("llRez(AtRoot/Object)", "Can't find object '" + inventory + "'"); |
3486 | return; | 3486 | return; |
3487 | } | 3487 | } |
3488 | 3488 | ||
3489 | if (item.InvType != (int)InventoryType.Object) | 3489 | if (item.InvType != (int)InventoryType.Object) |
3490 | { | 3490 | { |
3491 | Error("llRezAtRoot", "Can't create requested object; object is missing from database"); | 3491 | Error("llRez(AtRoot/Object)", "Can't create requested object; object is missing from database"); |
3492 | return; | 3492 | return; |
3493 | } | 3493 | } |
3494 | 3494 | ||
@@ -3532,7 +3532,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3532 | // Variable script delay? (see (http://wiki.secondlife.com/wiki/LSL_Delay) | 3532 | // Variable script delay? (see (http://wiki.secondlife.com/wiki/LSL_Delay) |
3533 | } | 3533 | } |
3534 | 3534 | ||
3535 | }, null, "LSL_Api.llRezAtRoot"); | 3535 | }, null, "LSL_Api.doObjectRez"); |
3536 | 3536 | ||
3537 | //ScriptSleep((int)((groupmass * velmag) / 10)); | 3537 | //ScriptSleep((int)((groupmass * velmag) / 10)); |
3538 | ScriptSleep(m_sleepMsOnRezAtRoot); | 3538 | ScriptSleep(m_sleepMsOnRezAtRoot); |