aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Globals/ObjectMgr.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2012-01-31 15:13:38 +0100
committerShauren <shauren.trinity@gmail.com>2012-01-31 15:13:38 +0100
commitea070e44e0542b56108fd1ae39ba64eb8d4a7f3d (patch)
tree8071f62f3793c7a62c10f8576966a350fc905bce /src/server/game/Globals/ObjectMgr.cpp
parent4d6bd47f4eb5b4893096b2078234c28c6510b61d (diff)
Core/Items: Defined "unk" field in HotfixInfo
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-rwxr-xr-xsrc/server/game/Globals/ObjectMgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp
index 9c0c5553b91..6bd34ae19ba 100755
--- a/src/server/game/Globals/ObjectMgr.cpp
+++ b/src/server/game/Globals/ObjectMgr.cpp
@@ -9038,7 +9038,7 @@ void ObjectMgr::LoadHotfixData()
{
uint32 oldMSTime = getMSTime();
- QueryResult result = WorldDatabase.Query("SELECT entry, type, unk FROM hotfix_data");
+ QueryResult result = WorldDatabase.Query("SELECT entry, type, UNIX_TIMESTAMP(hotixDate) FROM hotfix_data");
if (!result)
{
@@ -9058,7 +9058,7 @@ void ObjectMgr::LoadHotfixData()
HotfixInfo info;
info.Entry = fields[0].GetUInt32();
info.Type = fields[1].GetUInt32();
- info.Unk = fields[2].GetUInt32();
+ info.Timestamp = fields[2].GetUInt32();
_hotfixData.push_back(info);
++count;