mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-25 13:31:55 +00:00
- fixed lookup for tile aliases pointing to non-existent tiles.
This commit is contained in:
parent
564e9d2905
commit
9bc0a43028
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ void FMapInfoParser::ParseSwitches()
|
|||
{
|
||||
next:
|
||||
sc.MustGetString();
|
||||
auto thisframe = TexMan.CheckForTexture(sc.String, ETextureType::Any);
|
||||
auto thisframe = TexMan.CheckForTexture(sc.String, ETextureType::Any, texlookupflags);
|
||||
if (!thisframe.isValid())
|
||||
{
|
||||
sc.ScriptMessage("Unknown texture '%s' in switch definition", sc.String);
|
||||
|
|
Loading…
Reference in a new issue