diff --git a/src/common/Packets/ByteBuffer.h b/src/common/Packets/ByteBuffer.h index bbbb301b1..86c7d207d 100644 --- a/src/common/Packets/ByteBuffer.h +++ b/src/common/Packets/ByteBuffer.h @@ -364,11 +364,7 @@ class ByteBuffer lt.tm_mon = (packedDate >> 20) & 0xF; lt.tm_year = ((packedDate >> 24) & 0x1F) + 100; - #ifdef OS_WIN - return uint32(mktime(<) + _timezone); - #else - return uint32(mktime(<) + timezone); - #endif + return uint32(mktime(<)); }