diff options
author | Spp <none@none> | 2010-04-30 11:21:25 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-30 11:21:25 +0200 |
commit | 1bc2a9fd4a738e2671c0d35aaba9f76a4aee209c (patch) | |
tree | fd8f5c869164752798893a4b56b97a484549c488 /src/game/World.cpp | |
parent | 19bed200369a49e97f8f2496f27e6be826ec8b66 (diff) |
Replace some PQuery/PExecute by more simple Query/Execute
Original patch by hunuza, extended to whole code
Closses issue 1446
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index ef007d4ff59..9d00da68c95 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1278,7 +1278,7 @@ void World::SetInitialWorldSettings() loginDatabase.PExecute("UPDATE realmlist SET icon = %u, timezone = %u WHERE id = '%d'", server_type, realm_zone, realmID); ///- Remove the bones after a restart - CharacterDatabase.PExecute("DELETE FROM corpse WHERE corpse_type = '0'"); + CharacterDatabase.Execute("DELETE FROM corpse WHERE corpse_type = '0'"); ///- Load the DBC files sLog.outString("Initialize data stores..."); |