aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMistiX <47088016+Mistixx@users.noreply.github.com>2021-04-20 20:34:45 +0200
committerGitHub <noreply@github.com>2021-04-20 20:34:45 +0200
commitbf1c73dfc2c22a73e645ed41e2310b765caae80b (patch)
tree5db48f6fa8a4962bdf78152f6d2c2671d9f904b0 /src
parent7e78e25e34c5725a2c1ed870000a935573dd814c (diff)
Core/Misc: Fix crash when loading playerchoice_response (#26454)
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Globals/ObjectMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp
index 12f14c6bbcb..66512ae370e 100644
--- a/src/server/game/Globals/ObjectMgr.cpp
+++ b/src/server/game/Globals/ObjectMgr.cpp
@@ -10509,7 +10509,7 @@ void ObjectMgr::LoadPlayerChoices()
// 0 1 2 3 4 5
if (QueryResult responses = WorldDatabase.Query("SELECT ChoiceId, ResponseId, ResponseIdentifier, ChoiceArtFileId, Flags, WidgetSetID, "
// 6 7 8 9 10 11 12 13 14 15 16
- "UiTextureAtlasElementID, SoundKitID, GroupID, UiTextureKitID, Answer, Header, SubHeader, ButtonTemplate, Description, Confirmation, RewardQuestID "
+ "UiTextureAtlasElementID, SoundKitID, GroupID, UiTextureKitID, Answer, Header, SubHeader, ButtonTooltip, Description, Confirmation, RewardQuestID "
"FROM playerchoice_response ORDER BY `Index` ASC"))
{
do