mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Core/PlayerDump: add missing character_queststatus_* columns to dump
(cherry picked from commit 7f5756804e)
# Conflicts:
# src/server/game/Tools/PlayerDump.cpp
This commit is contained in:
@@ -24,14 +24,14 @@
|
||||
#include "AccountMgr.h"
|
||||
#include "World.h"
|
||||
|
||||
#define DUMP_TABLE_COUNT 30
|
||||
#define DUMP_TABLE_COUNT 34
|
||||
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 },
|
||||
@@ -51,6 +51,10 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] =
|
||||
{ "character_pet_declinedname", DTT_PET },
|
||||
{ "character_queststatus", DTT_CHAR_TABLE },
|
||||
{ "character_queststatus_objectives", 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 },
|
||||
|
||||
Reference in New Issue
Block a user