From 6f1a11567c9db54e5016bb5e043181b2164d1b7e Mon Sep 17 00:00:00 2001
From: pastel <hazepastel@proton.me>
Date: Sat, 18 Jan 2025 09:34:20 -0600
Subject: [PATCH] Fix file download checking the old asset file names

---
 src/netcode/d_netfil.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/netcode/d_netfil.c b/src/netcode/d_netfil.c
index 313905f438..bfb67838ff 100644
--- a/src/netcode/d_netfil.c
+++ b/src/netcode/d_netfil.c
@@ -1345,9 +1345,9 @@ void PT_FileFragment(SINT8 node, INT32 netconsole)
 
 	if (!(strcmp(filename, "srb2.pk3")
 		&& strcmp(filename, "zones.pk3")
-		&& strcmp(filename, "player.dta")
+		&& strcmp(filename, "characters.pk3")
 		&& strcmp(filename, "patch.pk3")
-		&& strcmp(filename, "music.dta")
+		&& strcmp(filename, "music.pk3")
 		))
 		I_Error("Tried to download \"%s\"", filename);
 
-- 
GitLab