[7665] Include achievement data to pdumps.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Splash 2009-04-14 01:01:19 +04:00 committed by VladimirMangos
parent 0aaf266513
commit 1ebf1a5ba4
3 changed files with 27 additions and 25 deletions

View file

@ -24,7 +24,7 @@
#include "ObjectMgr.h"
// Character Dump tables
#define DUMP_TABLE_COUNT 19
#define DUMP_TABLE_COUNT 21
struct DumpTable
{
@ -35,6 +35,8 @@ struct DumpTable
static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{
{ "characters", DTT_CHARACTER },
{ "character_achievement", DTT_CHAR_TABLE },
{ "character_achievement_progress", DTT_CHAR_TABLE },
{ "character_queststatus", DTT_CHAR_TABLE },
{ "character_reputation", DTT_CHAR_TABLE },
{ "character_spell", DTT_CHAR_TABLE },

View file

@ -27,10 +27,10 @@ enum DumpTableType
{
DTT_CHARACTER, // // characters
DTT_CHAR_TABLE, // // character_action, character_aura, character_homebind,
// character_queststatus, character_reputation,
// character_spell, character_spell_cooldown, character_ticket,
// character_tutorial
DTT_CHAR_TABLE, // // character_achievement, character_achievement_progress,
// character_action, character_aura, character_homebind,
// character_queststatus, character_reputation, character_spell,
// character_spell_cooldown, character_ticket, character_tutorial
DTT_INVENTORY, // -> item guids collection // character_inventory

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7664"
#define REVISION_NR "7665"
#endif // __REVISION_NR_H__