[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" #include "ObjectMgr.h"
// Character Dump tables // Character Dump tables
#define DUMP_TABLE_COUNT 19 #define DUMP_TABLE_COUNT 21
struct DumpTable struct DumpTable
{ {
@ -34,25 +34,27 @@ struct DumpTable
static DumpTable dumpTables[DUMP_TABLE_COUNT] = static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{ {
{ "characters", DTT_CHARACTER }, { "characters", DTT_CHARACTER },
{ "character_queststatus", DTT_CHAR_TABLE }, { "character_achievement", DTT_CHAR_TABLE },
{ "character_reputation", DTT_CHAR_TABLE }, { "character_achievement_progress", DTT_CHAR_TABLE },
{ "character_spell", DTT_CHAR_TABLE }, { "character_queststatus", DTT_CHAR_TABLE },
{ "character_spell_cooldown", DTT_CHAR_TABLE }, { "character_reputation", DTT_CHAR_TABLE },
{ "character_action", DTT_CHAR_TABLE }, { "character_spell", DTT_CHAR_TABLE },
{ "character_aura", DTT_CHAR_TABLE }, { "character_spell_cooldown", DTT_CHAR_TABLE },
{ "character_homebind", DTT_CHAR_TABLE }, { "character_action", DTT_CHAR_TABLE },
{ "character_ticket", DTT_CHAR_TABLE }, { "character_aura", DTT_CHAR_TABLE },
{ "character_inventory", DTT_INVENTORY }, { "character_homebind", DTT_CHAR_TABLE },
{ "mail", DTT_MAIL }, { "character_ticket", DTT_CHAR_TABLE },
{ "mail_items", DTT_MAIL_ITEM }, { "character_inventory", DTT_INVENTORY },
{ "item_instance", DTT_ITEM }, { "mail", DTT_MAIL },
{ "character_gifts", DTT_ITEM_GIFT }, { "mail_items", DTT_MAIL_ITEM },
{ "item_text", DTT_ITEM_TEXT }, { "item_instance", DTT_ITEM },
{ "character_pet", DTT_PET }, { "character_gifts", DTT_ITEM_GIFT },
{ "pet_aura", DTT_PET_TABLE }, { "item_text", DTT_ITEM_TEXT },
{ "pet_spell", DTT_PET_TABLE }, { "character_pet", DTT_PET },
{ "pet_spell_cooldown", DTT_PET_TABLE }, { "pet_aura", DTT_PET_TABLE },
{ "pet_spell", DTT_PET_TABLE },
{ "pet_spell_cooldown", DTT_PET_TABLE },
}; };
// Low level functions // Low level functions

View file

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

View file

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