Core/DataStores: Implemented TactKey.db2

This commit is contained in:
Vincent-Michael
2016-08-28 00:27:16 +02:00
parent 9f7c26273b
commit 07445d9860
5 changed files with 42 additions and 0 deletions

View File

@@ -857,6 +857,10 @@ void HotfixDatabaseConnection::DoPrepareStatements()
// SummonProperties.db2
PrepareStatement(HOTFIX_SEL_SUMMON_PROPERTIES, "SELECT ID, Category, Faction, Type, Slot, Flags FROM summon_properties ORDER BY ID DESC", CONNECTION_SYNCH);
// TactKey.db2
PrepareStatement(HOTFIX_SEL_TACT_KEY, "SELECT ID, Key1, Key2, Key3, Key4, Key5, Key6, Key7, Key8, Key9, Key10, Key11, Key12, Key13, Key14, "
"Key15, Key16 FROM tact_key ORDER BY ID DESC", CONNECTION_SYNCH);
// Talent.db2
PrepareStatement(HOTFIX_SEL_TALENT, "SELECT ID, SpellID, OverridesSpellID, Description, SpecID, TierID, ColumnIndex, Flags, CategoryMask1, "
"CategoryMask2, ClassID FROM talent ORDER BY ID DESC", CONNECTION_SYNCH);