From 2dc13e6242da2cb34cc59f24ffa25d03434220be Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 2 Jun 2017 23:46:15 -0500 Subject: [PATCH] makes machineguns pass their users to their fire helpers instead of the floor (#1256) --- 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 89af059fca..4b2176c603 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -1102,4 +1102,4 @@ if(target == user || target == get_turf(src)) return target_turf = get_turf(target) - fire_helper(target_turf) + fire_helper(user)