mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
Ignore UDMF lightmap keywords on sidedef as per ZDRay implementation
This commit is contained in:
parent
62f37079a7
commit
98f4beabe8
1 changed files with 10 additions and 0 deletions
|
@ -1481,6 +1481,16 @@ public:
|
|||
sd->Flags |= WALLF_EXTCOLOR;
|
||||
break;
|
||||
|
||||
case NAME_lm_lightcolorline:
|
||||
case NAME_lm_lightintensityline:
|
||||
case NAME_lm_lightdistanceline:
|
||||
case NAME_lm_sampledist_line:
|
||||
case NAME_lm_sampledist_top:
|
||||
case NAME_lm_sampledist_mid:
|
||||
case NAME_lm_sampledist_bot:
|
||||
CHECK_N(Zd | Zdt)
|
||||
break;
|
||||
|
||||
default:
|
||||
if (strnicmp("user_", key.GetChars(), 5))
|
||||
DPrintf(DMSG_WARNING, "Unknown UDMF sidedef key %s\n", key.GetChars());
|
||||
|
|
Loading…
Reference in a new issue