fix portals in Q2

This commit is contained in:
Jonathan 2024-05-29 09:40:36 -04:00
parent 0f844ad3e2
commit 70a08013a7
1 changed files with 1 additions and 1 deletions

View File

@ -1184,7 +1184,7 @@ struct gamedef_q2_t : public gamedef_t
if (!(c0 ^ c1))
return true;
return (((c0 ^ c1) & EWT_ALL_VISIBLE_CONTENTS) != 0);
return (((c0 ^ c1) & EWT_ALL_VISIBLE_CONTENTS) == 0);
}
bool contents_seals_map(const contentflags_t &contents) const override