* fixed silly typo

This commit is contained in:
false_genesis 2008-02-19 14:28:38 +00:00
parent 4c96c5039d
commit c87f175ad6

View File

@ -1006,7 +1006,7 @@ DefReturnResult DefScriptPackage::SCSendWho(CmdSet &Set)
WorldSession *ws = ((PseuInstance*)parentMethod)->GetWSession();
if(!ws)
{
logerror("Invalid Script call: SCSendWhoListRequest: WorldSession not valid");
logerror("Invalid Script call: SCSendWho: WorldSession not valid");
DEF_RETURN_ERROR;
}
uint32 minlvl = (uint32)DefScriptTools::toUint64(Set.arg[0]);
@ -1041,7 +1041,7 @@ DefReturnResult DefScriptPackage::SCGetObjectDistance(CmdSet &Set)
WorldSession *ws = ((PseuInstance*)parentMethod)->GetWSession();
if(!ws)
{
logerror("Invalid Script call: SCSendWhoListRequest: WorldSession not valid");
logerror("Invalid Script call: SCGetObjectDistance: WorldSession not valid");
DEF_RETURN_ERROR;
}
uint64 guid1 = DefScriptTools::toUint64(Set.defaultarg);