mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/PlayerDump: add missing character_queststatus_* columns to dump
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user