Core/CUF: Fix 2 typos

Thanks ste1s and chipsi
This commit is contained in:
Nay
2012-09-06 17:52:39 +01:00
parent f44ddb3355
commit b81dbf0837
2 changed files with 2 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ struct CUFProfile
Unk146 = unk146;
Unk147 = unk147;
Unk148 = unk148;
Unk150 = Unk150;
Unk150 = unk150;
Unk152 = unk152;
Unk154 = unk154;
}

View File

@@ -1982,7 +1982,7 @@ void WorldSession::HandleSaveCUFProfiles(WorldPacket& recvPacket)
if (count > MAX_CUF_PROFILES)
{
sLog->outError(LOG_FILTER_PLAYER, "HandleSaveCUFProfiles - %s tried to save more than %i CUF profiles. Hacking attempt?", GetPlayerName(), MAX_CUF_PROFILES);
sLog->outError(LOG_FILTER_PLAYER, "HandleSaveCUFProfiles - %s tried to save more than %i CUF profiles. Hacking attempt?", GetPlayerName().c_str(), MAX_CUF_PROFILES);
recvPacket.rfinish();
return;
}