Packet sends with sz 0 do not work on Linux

This commit is contained in:
Shea
2018-01-08 19:15:36 -06:00
parent 6e1c8c665b
commit ee581f27c4
+1 -1
View File
@@ -1515,7 +1515,7 @@ void Zone::Repop(uint32 delay) {
void Zone::GetTimeSync()
{
if (worldserver.Connected() && !zone_has_current_time) {
auto pack = new ServerPacket(ServerOP_GetWorldTime, 0);
auto pack = new ServerPacket(ServerOP_GetWorldTime, 1);
worldserver.SendPacket(pack);
safe_delete(pack);
}