fix a typo "osNpcCreated" to "osNpcCreate" in OSSL threat level check

iar_mods
nebadon 2012-01-06 23:07:48 -07:00
parent f4231f0628
commit 58cb7cd084
1 changed files with 1 additions and 1 deletions

View File

@ -2085,7 +2085,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Key osNpcCreate(string firstname, string lastname, LSL_Vector position, string notecard)
{
CheckThreatLevel(ThreatLevel.High, "osNpcCreated");
CheckThreatLevel(ThreatLevel.High, "osNpcCreate");
return NpcCreate(firstname, lastname, position, notecard, false);
}