mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Ignore a linedef tag of 0 when using linedef action 96.
This commit is contained in:
parent
a15a2f1ef2
commit
167d30efc2
1 changed files with 1 additions and 1 deletions
|
|
@ -3085,7 +3085,7 @@ static void P_AddBinaryMapTags(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (j = 0; j < numsectors; j++) {
|
for (j = 0; j < numsectors; j++) {
|
||||||
boolean matches_target_tag = Tag_Find(§ors[j].tags, target_tag);
|
boolean matches_target_tag = target_tag && Tag_Find(§ors[j].tags, target_tag);
|
||||||
size_t k; for (k = 0; k < 4; k++) {
|
size_t k; for (k = 0; k < 4; k++) {
|
||||||
if (lines[i].flags & ML_EFFECT5) {
|
if (lines[i].flags & ML_EFFECT5) {
|
||||||
if (matches_target_tag || (offset_tags[k] && Tag_Find(§ors[j].tags, offset_tags[k]))) {
|
if (matches_target_tag || (offset_tags[k] && Tag_Find(§ors[j].tags, offset_tags[k]))) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue