aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjoschiwald <joschiwald.trinity@gmail.com>2014-02-13 23:16:49 +0100
committerjoschiwald <joschiwald.trinity@gmail.com>2014-02-13 23:16:49 +0100
commitcb237a4bc2775a1fdd726faa99ef4ae97dea2bd8 (patch)
treebedb4f9d77dd4b0270eda59dfca8d2dbc403bbca /src
parent006d72a8289a3956bc06f528c457e350227e0cef (diff)
Core/PlayerDump: fix mail items and gifts export
Diffstat (limited to 'src')
-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 55d70514594..6cec8ba0220 100644
--- a/src/server/game/Tools/PlayerDump.cpp
+++ b/src/server/game/Tools/PlayerDump.cpp
@@ -41,7 +41,6 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{ "character_aura", 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 },
@@ -54,12 +53,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