* 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
This commit is contained in:
Chaz Brown
2009-09-28 01:14:21 -04:00
parent 77e5c0362e
commit daa9b62ec7

View File

@@ -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 },