From 6aba38f6645cd507030775f65056cf3df6c32dfb Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sun, 15 Jul 2018 00:27:51 -0400 Subject: [PATCH] Bug fix with rest timer changes --- zone/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client.cpp b/zone/client.cpp index 82bca086e..1c1d1575d 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -4678,7 +4678,7 @@ void Client::UpdateRestTimer(uint32 new_timer) if (m_pp.RestTimer < new_timer) // our timer needs to be updated, don't need to update client here m_pp.RestTimer = new_timer; } else { // if we're not aggro, we need to check if current timer needs updating - if (rest_timer.GetRemainingTime() < new_timer) { + if (rest_timer.GetRemainingTime() / 1000 < new_timer) { rest_timer.Start(new_timer); if (ClientVersion() >= EQEmu::versions::ClientVersion::SoF) { auto outapp = new EQApplicationPacket(OP_RestState, 5);