mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Added restriction of Require/Exclude to ZSDF
Added restriction of Require/Exclude to ZSDF (namespace = "ZDoom";). A warning will be printed if a Require/Exclude block is detected in USDF (namespace = "Strife";).
This commit is contained in:
parent
f1a80770e1
commit
c341bc0d3c
1 changed files with 9 additions and 1 deletions
|
@ -210,9 +210,17 @@ class USDFParser : public UDMFParserBase
|
|||
{
|
||||
switch(key)
|
||||
{
|
||||
case NAME_Cost:
|
||||
case NAME_Require:
|
||||
case NAME_Exclude:
|
||||
// Print a warning if the namespace is not ZDoom otherwise fall-through. [FishyClockwork]
|
||||
if (namespace_bits != Zd)
|
||||
{
|
||||
sc.ScriptMessage("Detected \"%s\" block, ignoring. Require/Exclude are exclusive to namespace ZDoom.", key == NAME_Require ? "Require" : "Exclude");
|
||||
while (!sc.CheckToken('}')) sc.MustGetAnyToken(); // Skip this block
|
||||
break;
|
||||
}
|
||||
|
||||
case NAME_Cost:
|
||||
ParseCostRequireExclude(reply, key);
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue