aboutsummaryrefslogtreecommitdiff
path: root/src/server/database
diff options
context:
space:
mode:
authorVincent-Michael <vincent_michael@gmx.de>2016-08-28 00:27:16 +0200
committerVincent-Michael <vincent_michael@gmx.de>2016-08-28 00:27:16 +0200
commit07445d9860f29c04edbb7d0caf1a82083b600e1b (patch)
treed9580ea464d5c32dd5f699bb0bd573fc5618602e /src/server/database
parent9f7c26273b96ae54542cf90872fd6c638879f0eb (diff)
Core/DataStores: Implemented TactKey.db2
Diffstat (limited to 'src/server/database')
-rw-r--r--src/server/database/Database/Implementation/HotfixDatabase.cpp4
-rw-r--r--src/server/database/Database/Implementation/HotfixDatabase.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/server/database/Database/Implementation/HotfixDatabase.cpp b/src/server/database/Database/Implementation/HotfixDatabase.cpp
index 66fd71cd5f9..859e8d8e773 100644
--- a/src/server/database/Database/Implementation/HotfixDatabase.cpp
+++ b/src/server/database/Database/Implementation/HotfixDatabase.cpp
@@ -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);
diff --git a/src/server/database/Database/Implementation/HotfixDatabase.h b/src/server/database/Database/Implementation/HotfixDatabase.h
index 4519255a299..499579550bb 100644
--- a/src/server/database/Database/Implementation/HotfixDatabase.h
+++ b/src/server/database/Database/Implementation/HotfixDatabase.h
@@ -457,6 +457,8 @@ enum HotfixDatabaseStatements
HOTFIX_SEL_SUMMON_PROPERTIES,
+ HOTFIX_SEL_TACT_KEY,
+
HOTFIX_SEL_TALENT,
HOTFIX_SEL_TALENT_LOCALE,