mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
Replace some PQuery() calls with more simple Query()
This commit is contained in:
parent
086dee05cd
commit
fa37c291d6
8 changed files with 24 additions and 24 deletions
|
|
@ -3399,7 +3399,7 @@ bool ChatHandler::HandleWpImportCommand(const char *args)
|
|||
{
|
||||
getline (infile,line);
|
||||
//cout << line << endl;
|
||||
QueryResult *result = WorldDatabase.PQuery(line.c_str());
|
||||
QueryResult *result = WorldDatabase.Query(line.c_str());
|
||||
delete result;
|
||||
}
|
||||
infile.close();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue