mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Allow "texture" as an alias to "floor"
Since we I'm using it for Tripwire too
This commit is contained in:
parent
1e0f9faf19
commit
ee8f7468bb
1 changed files with 1 additions and 1 deletions
|
|
@ -970,7 +970,7 @@ static boolean K_TERRAINLumpParser(UINT8 *data, size_t size)
|
||||||
valid = false;
|
valid = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (stricmp(tkn, "floor") == 0)
|
else if (stricmp(tkn, "floor") == 0 || stricmp(tkn, "texture") == 0)
|
||||||
{
|
{
|
||||||
Z_Free(tkn);
|
Z_Free(tkn);
|
||||||
tkn = M_GetToken(NULL);
|
tkn = M_GetToken(NULL);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue