From 7246b6e9a6c158f64ca4e59e3eb70d375101cb72 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Sat, 3 Nov 2018 21:53:21 -0400 Subject: [PATCH] Changed Line 449 post exec tag to line tag --- src/p_spec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_spec.c b/src/p_spec.c index cd4dd76cf..e2c73a5a5 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -3462,7 +3462,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec) { INT32 promptnum = max(0, (sides[line->sidenum[0]].textureoffset>>FRACBITS)-1); INT32 pagenum = max(0, (sides[line->sidenum[0]].rowoffset>>FRACBITS)-1); - INT32 postexectag = (line->sidenum[1] != 0xFFFF) ? abs(sides[line->sidenum[1]].textureoffset>>FRACBITS) : 0; + INT32 postexectag = line->tag; boolean closetextprompt = (line->flags & ML_BLOCKMONSTERS); boolean runpostexec = (line->flags & ML_EFFECT1);