From 71e309022afc8e546554b6d31f370d94be63c0ce Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sun, 15 Jul 2018 00:34:44 -0400 Subject: [PATCH] Fun fact, seconds are not milliseconds! --- zone/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client.cpp b/zone/client.cpp index 1c1d1575d..3339deb9c 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -4679,7 +4679,7 @@ void Client::UpdateRestTimer(uint32 new_timer) m_pp.RestTimer = new_timer; } else { // if we're not aggro, we need to check if current timer needs updating if (rest_timer.GetRemainingTime() / 1000 < new_timer) { - rest_timer.Start(new_timer); + rest_timer.Start(new_timer * 1000); if (ClientVersion() >= EQEmu::versions::ClientVersion::SoF) { auto outapp = new EQApplicationPacket(OP_RestState, 5); char *Buffer = (char *)outapp->pBuffer;