From b3fc1ea08aedd9b672fcda37056b68b417277e38 Mon Sep 17 00:00:00 2001 From: Tlaltecuhtli <33834933+Tlaltecuhtli@users.noreply.github.com> Date: Tue, 21 Aug 2018 08:39:03 +0200 Subject: [PATCH] tweaks borg ion thrusters to not be noob bait :cl: tweak: ion trusters consume 1/5 of the default power /:cl: shooting bullets as syndiborg is 100 times cheaper than using the thrusters --- code/modules/mob/living/silicon/robot/robot.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 546f1b9db9f..1f2eef5d286 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -285,12 +285,12 @@ if(!ionpulse_on) return - if(cell.charge <= 50) + if(cell.charge <= 10) toggle_ionpulse() return - cell.charge -= 50 // 500 steps on a default cell. - return 1 + cell.charge -= 10 + return TRUE /mob/living/silicon/robot/proc/toggle_ionpulse() if(!ionpulse)