From 0e87d7b91afd5178e374b02ab0026def54d132d6 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Mon, 16 Apr 2012 16:32:18 +0100 Subject: [PATCH 1/2] Fixes portable turrets projectiles not moving. --- code/game/machinery/portable_turret.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/portable_turret.dm b/code/game/machinery/portable_turret.dm index 3263c3d9b73..ea85c63b6b8 100644 --- a/code/game/machinery/portable_turret.dm +++ b/code/game/machinery/portable_turret.dm @@ -567,7 +567,7 @@ Neutralize All Unidentified Life Signs: []
"}, A.yo = U.y - T.y A.xo = U.x - T.x spawn( 1 ) - A.process() + A.fired() return From 87de3c94fd322da7f147a1b6f6b5bf253ebc6340 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Mon, 16 Apr 2012 21:10:13 +0100 Subject: [PATCH 2/2] Fixes a ninja ability projectile. --- code/game/events/EventProcs/ninja_abilities.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/events/EventProcs/ninja_abilities.dm b/code/game/events/EventProcs/ninja_abilities.dm index fd17477f691..5de2c8ed839 100644 --- a/code/game/events/EventProcs/ninja_abilities.dm +++ b/code/game/events/EventProcs/ninja_abilities.dm @@ -213,7 +213,7 @@ This could be a lot better but I'm too tired atm.*/ A.yo = targloc.y - curloc.y A.xo = targloc.x - curloc.x cell.charge-=(C*10) - A.process() + A.fired() else U << "\red There are no targets in view." return