From 9fa22d96f79e014aa2dba5e40ca41ab1b2c9528b Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Sat, 27 Oct 2018 20:16:55 +0200 Subject: [PATCH] Fix bug with linedefs having same sidedef on both sides --- src/nodebuilder/nodebuild_extract.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/nodebuilder/nodebuild_extract.cpp b/src/nodebuilder/nodebuild_extract.cpp index 2275db6..eea5c34 100644 --- a/src/nodebuilder/nodebuild_extract.cpp +++ b/src/nodebuilder/nodebuild_extract.cpp @@ -521,8 +521,6 @@ int FNodeBuilder::StripMinisegs (TArray &segs, int subsector, short bb newseg.side = ld->sidenum[1] == org->sidedef ? 1 : 0; } - - newseg.side = Level.Lines[org->linedef].sidenum[1] == org->sidedef ? 1 : 0; segs.Push (newseg); ++count; }