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:
biwa 2021-04-10 12:05:30 +02:00
parent ba497f1c45
commit 74741b4e0f
3 changed files with 1 additions and 23 deletions

View file

@ -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");
}

View file

@ -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";
}
}
}

View file

@ -53,7 +53,6 @@ thingflagscompare
16
{
comparemethod = "equal";
ignoredgroups = "skills";
ingnorethisgroupwhenunset = true;
}
}