From 91aa40e1ff340c2e01723c22f257cc968c2bd1c0 Mon Sep 17 00:00:00 2001 From: Ansari Date: Tue, 3 Oct 2017 21:03:11 +0800 Subject: [PATCH] Reduce ion thruster's energy use by half from 100 -> 50 --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index a8b9bc8fd02..28ffd75c1e4 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -490,7 +490,7 @@ var/list/robot_verbs_default = list( toggle_ionpulse() return - cell.charge -= 50 // 500 steps on a default cell. + cell.charge -= 25 // 500 steps on a default cell. return 1 /mob/living/silicon/robot/proc/toggle_ionpulse()