mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 20:02:48 +00:00
Map Analysis Mode: fixed a problem where checking for stuck things works incorrectly in some situations (thanks to hawkwind3). Fixes #469
This commit is contained in:
parent
ba497f1c45
commit
74741b4e0f
3 changed files with 1 additions and 23 deletions
|
@ -98,6 +98,7 @@ mapformat_doom
|
|||
// How to compare thing flags (for the stuck things error checker)
|
||||
thingflagscompare
|
||||
{
|
||||
include("Doom_misc.cfg", "thingflagscompare");
|
||||
include("Boom_misc.cfg", "thingflagscompare");
|
||||
}
|
||||
|
||||
|
|
|
@ -35,23 +35,6 @@ thingflagstranslation
|
|||
// How thing flags should be compared (for the stuck thing error check)
|
||||
thingflagscompare
|
||||
{
|
||||
skills
|
||||
{
|
||||
1;
|
||||
2;
|
||||
4;
|
||||
}
|
||||
|
||||
gamemodes
|
||||
{
|
||||
16
|
||||
{
|
||||
comparemethod = "equal";
|
||||
ignoredgroups = "skills";
|
||||
ingnorethisgroupwhenunset = true;
|
||||
}
|
||||
}
|
||||
|
||||
gamemodes_extra
|
||||
{
|
||||
optional = true;
|
||||
|
@ -59,16 +42,11 @@ thingflagscompare
|
|||
32
|
||||
{
|
||||
invert = true;
|
||||
requiredflag = "16";
|
||||
requiredgroups = "gamemodes";
|
||||
ignoredgroups = "skills";
|
||||
}
|
||||
|
||||
64
|
||||
{
|
||||
invert = true;
|
||||
requiredflag = "16";
|
||||
requiredgroups = "skills,gamemodes";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,7 +53,6 @@ thingflagscompare
|
|||
16
|
||||
{
|
||||
comparemethod = "equal";
|
||||
ignoredgroups = "skills";
|
||||
ingnorethisgroupwhenunset = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue