diff --git a/src/server/network/protocol/protocolgame.cpp b/src/server/network/protocol/protocolgame.cpp index 0a54249c5d1..e8ee4d02915 100644 --- a/src/server/network/protocol/protocolgame.cpp +++ b/src/server/network/protocol/protocolgame.cpp @@ -6912,7 +6912,7 @@ void ProtocolGame::sendPreyData(const std::unique_ptr &slot) { auto timeDiffMinutes = timeDiffMs / 60000; msg.add(timeDiffMinutes ? timeDiffMinutes : 0); } else { - msg.add(std::max(safe_convert(((slot->freeRerollTimeStamp - OTSYS_TIME()) / 1000), __FUNCTION__), 0)); + msg.add(std::max(safe_convert(((slot->freeRerollTimeStamp - OTSYS_TIME()) / 1000), __FUNCTION__), 0)); msg.addByte(safe_convert(slot->option, __FUNCTION__)); } @@ -7549,7 +7549,7 @@ void ProtocolGame::sendTaskHuntingData(const std::unique_ptr &s return; } - msg.add(std::max(safe_convert(((slot->freeRerollTimeStamp - OTSYS_TIME()) / 1000), __FUNCTION__), 0)); + msg.add(std::max(safe_convert(((slot->freeRerollTimeStamp - OTSYS_TIME()) / 1000), __FUNCTION__), 0)); writeToOutputBuffer(msg); }