mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[7665] Include achievement data to pdumps.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
0aaf266513
commit
1ebf1a5ba4
3 changed files with 27 additions and 25 deletions
|
|
@ -24,7 +24,7 @@
|
|||
#include "ObjectMgr.h"
|
||||
|
||||
// Character Dump tables
|
||||
#define DUMP_TABLE_COUNT 19
|
||||
#define DUMP_TABLE_COUNT 21
|
||||
|
||||
struct DumpTable
|
||||
{
|
||||
|
|
@ -34,25 +34,27 @@ struct DumpTable
|
|||
|
||||
static DumpTable dumpTables[DUMP_TABLE_COUNT] =
|
||||
{
|
||||
{ "characters", DTT_CHARACTER },
|
||||
{ "character_queststatus", DTT_CHAR_TABLE },
|
||||
{ "character_reputation", DTT_CHAR_TABLE },
|
||||
{ "character_spell", DTT_CHAR_TABLE },
|
||||
{ "character_spell_cooldown", DTT_CHAR_TABLE },
|
||||
{ "character_action", DTT_CHAR_TABLE },
|
||||
{ "character_aura", DTT_CHAR_TABLE },
|
||||
{ "character_homebind", DTT_CHAR_TABLE },
|
||||
{ "character_ticket", DTT_CHAR_TABLE },
|
||||
{ "character_inventory", DTT_INVENTORY },
|
||||
{ "mail", DTT_MAIL },
|
||||
{ "mail_items", DTT_MAIL_ITEM },
|
||||
{ "item_instance", DTT_ITEM },
|
||||
{ "character_gifts", DTT_ITEM_GIFT },
|
||||
{ "item_text", DTT_ITEM_TEXT },
|
||||
{ "character_pet", DTT_PET },
|
||||
{ "pet_aura", DTT_PET_TABLE },
|
||||
{ "pet_spell", DTT_PET_TABLE },
|
||||
{ "pet_spell_cooldown", DTT_PET_TABLE },
|
||||
{ "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 },
|
||||
{ "character_spell_cooldown", DTT_CHAR_TABLE },
|
||||
{ "character_action", DTT_CHAR_TABLE },
|
||||
{ "character_aura", DTT_CHAR_TABLE },
|
||||
{ "character_homebind", DTT_CHAR_TABLE },
|
||||
{ "character_ticket", DTT_CHAR_TABLE },
|
||||
{ "character_inventory", DTT_INVENTORY },
|
||||
{ "mail", DTT_MAIL },
|
||||
{ "mail_items", DTT_MAIL_ITEM },
|
||||
{ "item_instance", DTT_ITEM },
|
||||
{ "character_gifts", DTT_ITEM_GIFT },
|
||||
{ "item_text", DTT_ITEM_TEXT },
|
||||
{ "character_pet", DTT_PET },
|
||||
{ "pet_aura", DTT_PET_TABLE },
|
||||
{ "pet_spell", DTT_PET_TABLE },
|
||||
{ "pet_spell_cooldown", DTT_PET_TABLE },
|
||||
};
|
||||
|
||||
// Low level functions
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "7664"
|
||||
#define REVISION_NR "7665"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue