From 5cfd8d882397600591f99fae1bd4669d5151eb8e Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sat, 2 May 2026 20:30:39 -0400 Subject: [PATCH] Use 1000 as the default packetsize Seems to be the most compat --- src/d_net.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/d_net.c b/src/d_net.c index deff99de8..5b65d72ff 100644 --- a/src/d_net.c +++ b/src/d_net.c @@ -1246,7 +1246,8 @@ boolean D_CheckNetGame(void) software_MAXPACKETLENGTH = hardware_MAXPACKETLENGTH; #else // MTU, IPV4, UDP header. - software_MAXPACKETLENGTH = 1500 - 20 - 8; + // 1500 - 20 - 8; + software_MAXPACKETLENGTH = 1000; #endif if (M_CheckParm("-packetsize")) {