mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-02-12 14:45:25 +00:00
Restricted custom goodbyes to ZSDF
This commit is contained in:
parent
1502eae2ac
commit
7c1f7aa81c
1 changed files with 5 additions and 1 deletions
|
@ -345,7 +345,11 @@ class USDFParser : public UDMFParserBase
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NAME_Goodbye:
|
case NAME_Goodbye:
|
||||||
|
// Custom goodbyes are exclusive to namespace ZDoom. [FishyClockwork]
|
||||||
|
if (namespace_bits == Zd)
|
||||||
|
{
|
||||||
Goodbye = CheckString(key);
|
Goodbye = CheckString(key);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue