[9629] Replace some PQuery/PExecute by more simple Query/Execute.

Signed-off-by: hunuza <hunuza@gmail.com>
This commit is contained in:
hunuza 2010-03-27 12:08:24 +01:00
parent af1ce1433d
commit 4d4f3ae4a2
4 changed files with 5 additions and 5 deletions

View file

@ -75,6 +75,6 @@ void GMTicketMgr::DeleteAll()
if(Player* owner = sObjectMgr.GetPlayer(MAKE_NEW_GUID(itr->first, 0, HIGHGUID_PLAYER)))
owner->GetSession()->SendGMTicketGetTicket(0x0A, 0);
}
CharacterDatabase.PExecute("DELETE FROM character_ticket");
CharacterDatabase.Execute("DELETE FROM character_ticket");
m_GMTicketMap.clear();
}