aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Tools/PlayerDump.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/game/Tools/PlayerDump.cpp')
-rw-r--r--src/server/game/Tools/PlayerDump.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/game/Tools/PlayerDump.cpp b/src/server/game/Tools/PlayerDump.cpp
index 821d2c568a5..3cde5a6d70f 100644
--- a/src/server/game/Tools/PlayerDump.cpp
+++ b/src/server/game/Tools/PlayerDump.cpp
@@ -43,7 +43,6 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{ "character_cuf_profiles", DTT_CHAR_TABLE },
{ "character_declinedname", DTT_CHAR_TABLE },
{ "character_equipmentsets", DTT_EQSET_TABLE},
- { "character_gifts", DTT_ITEM_GIFT },
{ "character_glyphs", DTT_CHAR_TABLE },
{ "character_homebind", DTT_CHAR_TABLE },
{ "character_inventory", DTT_INVENTORY },
@@ -56,12 +55,13 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{ "character_spell", DTT_CHAR_TABLE },
{ "character_spell_cooldown", DTT_CHAR_TABLE },
{ "character_talent", DTT_CHAR_TABLE },
- { "item_instance", DTT_ITEM },
{ "mail", DTT_MAIL },
- { "mail_items", DTT_MAIL_ITEM },
- { "pet_aura", DTT_PET_TABLE },
- { "pet_spell", DTT_PET_TABLE },
- { "pet_spell_cooldown", DTT_PET_TABLE },
+ { "mail_items", DTT_MAIL_ITEM }, // must be after mail
+ { "pet_aura", DTT_PET_TABLE }, // must be after character_pet
+ { "pet_spell", DTT_PET_TABLE }, // must be after character_pet
+ { "pet_spell_cooldown", DTT_PET_TABLE }, // must be after character_pet
+ { "item_instance", DTT_ITEM }, // must be after character_inventory and mail_items
+ { "character_gifts", DTT_ITEM_GIFT }, // must be after item_instance
};
// Low level functions