mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-09 09:41:12 +00:00
Fix file download checking the old asset file names
This commit is contained in:
parent
a67a6ca3b8
commit
6f1a11567c
1 changed files with 2 additions and 2 deletions
|
@ -1345,9 +1345,9 @@ void PT_FileFragment(SINT8 node, INT32 netconsole)
|
||||||
|
|
||||||
if (!(strcmp(filename, "srb2.pk3")
|
if (!(strcmp(filename, "srb2.pk3")
|
||||||
&& strcmp(filename, "zones.pk3")
|
&& strcmp(filename, "zones.pk3")
|
||||||
&& strcmp(filename, "player.dta")
|
&& strcmp(filename, "characters.pk3")
|
||||||
&& strcmp(filename, "patch.pk3")
|
&& strcmp(filename, "patch.pk3")
|
||||||
&& strcmp(filename, "music.dta")
|
&& strcmp(filename, "music.pk3")
|
||||||
))
|
))
|
||||||
I_Error("Tried to download \"%s\"", filename);
|
I_Error("Tried to download \"%s\"", filename);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue