From d792c194898e1be158dae27c39372d55f8428d7e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 17 Feb 2021 14:46:39 +0100 Subject: [PATCH] [MIRROR] Fixes an incorrectly assigned var in syndicate turrets, allowing them to shoot again (#3447) * Fixes an incorrectly set variable in portaturret code that broke all syndicate shuttle turrets (#56941) Sets a var that was FALSE to TRUE again, so that these turrets can fire once again. * Fixes an incorrectly assigned var in syndicate turrets, allowing them to shoot again Co-authored-by: necromanceranne <40847847+necromanceranne@users.noreply.github.com> --- code/game/machinery/porta_turret/portable_turret.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index bba2454b32e..ec062fb815a 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -709,7 +709,7 @@ DEFINE_BITFIELD(turret_flags, list( installation = null always_up = TRUE use_power = NO_POWER_USE - has_cover = TRUE + has_cover = FALSE scan_range = 9 req_access = list(ACCESS_SYNDICATE) uses_stored = FALSE