From c87f175ad63ff4d6d39b54c7f3f9b3add132ea0a Mon Sep 17 00:00:00 2001 From: false_genesis Date: Tue, 19 Feb 2008 14:28:38 +0000 Subject: [PATCH] * fixed silly typo --- src/Client/DefScriptInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client/DefScriptInterface.cpp b/src/Client/DefScriptInterface.cpp index 1683212..18eea79 100644 --- a/src/Client/DefScriptInterface.cpp +++ b/src/Client/DefScriptInterface.cpp @@ -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);