aboutsummaryrefslogtreecommitdiff
path: root/src/game/PlayerDump.cpp
diff options
context:
space:
mode:
authorChaz Brown <iamparadox@netscape.net>2009-09-28 01:14:21 -0400
committerChaz Brown <iamparadox@netscape.net>2009-09-28 01:14:21 -0400
commitdaa9b62ec709bf741448dd375403f83cc11bc023 (patch)
tree7098eac4a32ba1729e9ca4f93c341d2afbcc316d /src/game/PlayerDump.cpp
parent77e5c0362e574d878fcc7f6eafd51df8d197e561 (diff)
* Add three tables to player dump: character_account_data, character_glyphs and character_talent
* If the player has not selected any talents at all, you will see a SQL error, but, the dump will work just fine. --HG-- branch : trunk
Diffstat (limited to 'src/game/PlayerDump.cpp')
-rw-r--r--src/game/PlayerDump.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/PlayerDump.cpp b/src/game/PlayerDump.cpp
index 03d7999755f..bde77466b8d 100644
--- a/src/game/PlayerDump.cpp
+++ b/src/game/PlayerDump.cpp
@@ -26,7 +26,7 @@
#include "ObjectMgr.h"
// Character Dump tables
-#define DUMP_TABLE_COUNT 20
+#define DUMP_TABLE_COUNT 24
struct DumpTable
{
@@ -46,7 +46,9 @@ static DumpTable dumpTables[DUMP_TABLE_COUNT] =
{ "character_action", DTT_CHAR_TABLE },
{ "character_aura", DTT_CHAR_TABLE },
{ "character_homebind", DTT_CHAR_TABLE },
-// { "character_ticket", DTT_CHAR_TABLE },
+ { "character_account_data", DTT_CHAR_TABLE },
+ { "character_glyphs", DTT_CHAR_TABLE },
+ { "character_talent", DTT_CHAR_TABLE },
{ "character_inventory", DTT_INVENTORY },
{ "mail", DTT_MAIL },
{ "mail_items", DTT_MAIL_ITEM },