mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-24 02:01:17 +00:00
Merge branch 'wrongfiles' into 'next'
Fix file downloader checking the old asset file names See merge request STJr/SRB2!2596
This commit is contained in:
commit
d92e293385
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