diff options
| author | funjoker <funjoker109@gmail.com> | 2021-11-03 11:53:27 +0100 |
|---|---|---|
| committer | funjoker <funjoker109@gmail.com> | 2021-11-03 11:53:27 +0100 |
| commit | 1e52f9fdf566320fd586127692c5a1c16e34f741 (patch) | |
| tree | 781447ab22bf4b3e4bedbe638a94f09c6abc6457 /src/server/database/Database/Implementation | |
| parent | edc94e8ae8c5ddd46b53c706161a5511b3a3bcc3 (diff) | |
Core/DB: Fix AnimationData structure
Diffstat (limited to 'src/server/database/Database/Implementation')
| -rw-r--r-- | src/server/database/Database/Implementation/HotfixDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/database/Database/Implementation/HotfixDatabase.cpp b/src/server/database/Database/Implementation/HotfixDatabase.cpp index 4c3570616ed..62f83dbc5ad 100644 --- a/src/server/database/Database/Implementation/HotfixDatabase.cpp +++ b/src/server/database/Database/Implementation/HotfixDatabase.cpp @@ -66,7 +66,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // AnimationData.db2 - PrepareStatement(HOTFIX_SEL_ANIMATION_DATA, "SELECT ID, BehaviorID, BehaviorTier, Fallback, Flags1, Flags2 FROM animation_data" + PrepareStatement(HOTFIX_SEL_ANIMATION_DATA, "SELECT ID, Fallback, BehaviorTier, BehaviorID, Flags1, Flags2 FROM animation_data" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ANIMATION_DATA, "SELECT MAX(ID) + 1 FROM animation_data", CONNECTION_SYNCH); |
