From 75fd6085a5f9cbac890f189905373aaef51dac1c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 18 Oct 2008 23:30:29 +0000 Subject: [PATCH] - reordered parentheses in check for being able to see through shootable lines. SVN r1268 (trunk) --- src/p_sight.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/p_sight.cpp b/src/p_sight.cpp index 534d8300c..bedd1b40f 100644 --- a/src/p_sight.cpp +++ b/src/p_sight.cpp @@ -135,9 +135,9 @@ static bool P_SightCheckLine (line_t *ld) return false; } if (SeePastShootableLines && - (!(ld->activation & SPAC_Impact) || - (ld->special != ACS_Execute && ld->special != ACS_ExecuteAlways) || - (ld->args[1] != 0 && ld->args[1] != level.levelnum))) + (!(ld->activation & SPAC_Impact) || + (ld->special != ACS_Execute && ld->special != ACS_ExecuteAlways)) || + (ld->args[1] != 0 && ld->args[1] != level.levelnum)) { // Pretend the other side is invisible if this is not an impact line // or it does not run a script on the current map. Used to prevent