Skip to content

Commit

Permalink
Fixed|Map Importer: TNT MAP02 deep water being cancelled
Browse files Browse the repository at this point in the history
A re-regression, where sector 97 having missing textures was preventing it from being used as a plane link target. Relaxing the condition for cancelling fixed the TNT MAP02 deep water. It's possible that another hack was broken elsewhere, though.

IssueID #2370
  • Loading branch information
skyjake committed Dec 29, 2020
1 parent 7aab766 commit 5d748f1
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1725,7 +1725,8 @@ DE_PIMPL(MapImporter)
for (auto &sector : sectors)
{
if (sector.foundHacks &&
sectors[sector.hackParams.visPlaneLinkTargetSector].foundHacks)
(sectors[sector.hackParams.visPlaneLinkTargetSector].foundHacks &
~(HACK_MISSING_OUTSIDE_BOTTOM | HACK_MISSING_OUTSIDE_TOP))) /* allow linking to deep water */
{
LOGDEV_MAP_VERBOSE("sector %d is linked to hacked sector %d -> cancelling")
<< indexOf(sector) << sector.hackParams.visPlaneLinkTargetSector;
Expand Down

0 comments on commit 5d748f1

Please sign in to comment.