From 9f06903d7284553dbeb77ee6ae9ea40693998318 Mon Sep 17 00:00:00 2001 From: Nev3r Date: Sat, 11 Jul 2020 11:01:05 +0200 Subject: [PATCH] What the fuck was I thinking? Fixed really stupid brainless code piece involving polyobject spawnpoint tagging. --- src/p_setup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_setup.c b/src/p_setup.c index e073cc110..981d02360 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -3180,11 +3180,11 @@ static void P_ConvertBinaryMap(void) { INT32 check = -1; INT32 firstline = -1; - mtag_t tag = Tag_FGet(&lines[check].tags); + mtag_t tag = mapthings[i].angle; TAG_ITER_C - Tag_FSet(&mapthings[i].tags, mapthings[i].angle); + Tag_FSet(&mapthings[i].tags, tag); TAG_ITER_LINES(tag, check) {