mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +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"
|
#include "ObjectMgr.h"
|
||||||
|
|
||||||
// Character Dump tables
|
// Character Dump tables
|
||||||
#define DUMP_TABLE_COUNT 19
|
#define DUMP_TABLE_COUNT 21
|
||||||
|
|
||||||
struct DumpTable
|
struct DumpTable
|
||||||
{
|
{
|
||||||
|
|
@ -35,6 +35,8 @@ struct DumpTable
|
||||||
static DumpTable dumpTables[DUMP_TABLE_COUNT] =
|
static DumpTable dumpTables[DUMP_TABLE_COUNT] =
|
||||||
{
|
{
|
||||||
{ "characters", DTT_CHARACTER },
|
{ "characters", DTT_CHARACTER },
|
||||||
|
{ "character_achievement", DTT_CHAR_TABLE },
|
||||||
|
{ "character_achievement_progress", DTT_CHAR_TABLE },
|
||||||
{ "character_queststatus", DTT_CHAR_TABLE },
|
{ "character_queststatus", DTT_CHAR_TABLE },
|
||||||
{ "character_reputation", DTT_CHAR_TABLE },
|
{ "character_reputation", DTT_CHAR_TABLE },
|
||||||
{ "character_spell", DTT_CHAR_TABLE },
|
{ "character_spell", DTT_CHAR_TABLE },
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue