Merge pull request 'Apply skin wildcards in SPRTINFO to v2 chars only' (#151) from Wumbo/blankart:leavekartskinsalone into blankart-dev
Reviewed-on: https://codeberg.org/NepDisk/blankart/pulls/151
This commit is contained in:
commit
7547f6224d
1 changed files with 6 additions and 1 deletions
|
|
@ -1594,7 +1594,12 @@ static boolean R_ParseSpriteInfoFrame(struct ParseSpriteInfoState *parser, boole
|
|||
{
|
||||
for (i = 0; i < numskins; i++)
|
||||
{
|
||||
copy_to_skin(parser, i);
|
||||
// ignore v1 skins or else they will break
|
||||
boolean compat = wadfiles[skins[i].wadnum]->compatmode;
|
||||
if (!compat)
|
||||
{
|
||||
copy_to_skin(parser, i);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue