aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Kalimdor
diff options
context:
space:
mode:
authorCarbenium <carbenium@outlook.com>2020-07-25 20:09:03 +0200
committerPeter Keresztes Schmidt <carbenium@outlook.com>2020-07-25 23:10:14 +0200
commitd7ff8c272ad016296e1eed5aae325e4e5058ddd8 (patch)
tree5a799d7db2de941da239a42d91bb3cade57cf4e7 /src/server/scripts/Kalimdor
parentd5de96e46bf52ccb2fffe01c0709f9238977a80e (diff)
Core/InstanceScript: std::chrono-ify DoRespawnGameObject
Diffstat (limited to 'src/server/scripts/Kalimdor')
-rw-r--r--src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp
index 295fa2bbf33..05b581840f1 100644
--- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp
+++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp
@@ -216,7 +216,7 @@ public:
for (GuidList::const_iterator itr = m_uiAncientGemGUID.begin(); itr != m_uiAncientGemGUID.end(); ++itr)
{
//don't know how long it expected
- DoRespawnGameObject(*itr, DAY);
+ DoRespawnGameObject(*itr, 24h);
}
}
}