From 7f5756804edeb50cea1debe994ebed84e315f5cc Mon Sep 17 00:00:00 2001 From: ariel- Date: Tue, 16 Aug 2016 02:18:02 -0300 Subject: Core/PlayerDump: add missing character_queststatus_* columns to dump --- src/server/game/Tools/PlayerDump.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/server/game/Tools/PlayerDump.cpp b/src/server/game/Tools/PlayerDump.cpp index 4c5ac1dab5e..e009fe66b08 100644 --- a/src/server/game/Tools/PlayerDump.cpp +++ b/src/server/game/Tools/PlayerDump.cpp @@ -25,14 +25,14 @@ #include "AccountMgr.h" #include "World.h" -#define DUMP_TABLE_COUNT 27 +#define DUMP_TABLE_COUNT 31 struct DumpTable { char const* name; DumpTableType type; }; -static DumpTable dumpTables[DUMP_TABLE_COUNT] = +DumpTable const dumpTables[DUMP_TABLE_COUNT] = { { "characters", DTT_CHARACTER }, { "character_account_data", DTT_CHAR_TABLE }, @@ -48,6 +48,10 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] = { "character_pet", DTT_PET }, { "character_pet_declinedname", DTT_PET }, { "character_queststatus", DTT_CHAR_TABLE }, + { "character_queststatus_daily", DTT_CHAR_TABLE }, + { "character_queststatus_weekly", DTT_CHAR_TABLE }, + { "character_queststatus_monthly", DTT_CHAR_TABLE }, + { "character_queststatus_seasonal", DTT_CHAR_TABLE }, { "character_queststatus_rewarded", DTT_CHAR_TABLE }, { "character_reputation", DTT_CHAR_TABLE }, { "character_skills", DTT_CHAR_TABLE }, -- cgit v1.2.3