From e2077620c84ffd1d9b9b2f0bcf5470ccbbd27d19 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 4 Aug 2021 17:59:09 +0200 Subject: [PATCH] general_barrier: removed useless at_corner = true --- barriers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/barriers.cpp b/barriers.cpp index 89eaf5ed..2901cbeb 100644 --- a/barriers.cpp +++ b/barriers.cpp @@ -206,7 +206,6 @@ EX bool general_barrier_advance(cellwalker& bb, int& dir, eLand& l1, eLand& l2, surround_by(setit, bb, dir, 1, s1, l1, false, ok); surround_by(setit, bb, dir, s1+1, steps1-1, l2, true, ok); spin_around_by(bb, dir, s1); - at_corner = true; ws = dir > 0 ? NOWALLSEP_WALL_CPOS : NOWALLSEP_WALL_CNEG; return ok; }