Fix species with slowdown instead being super fast

This commit is contained in:
Aronai Sieyes
2020-05-07 00:18:54 -04:00
parent 63e112f1e2
commit 6213201ff2
3 changed files with 19 additions and 15 deletions

View File

@@ -15,15 +15,15 @@
//No longer needed, but I'll leave it here incase we plan to re-use it.
/mob/living/silicon/robot/movement_delay()
. = ..()
. += speed
. = speed
if(module_active && istype(module_active,/obj/item/borg/combat/mobility))
. -= 3
. += config.robot_delay
. += ..()
// NEW: Use power while moving.
/mob/living/silicon/robot/SelfMove(turf/n, direct, movetime)
if (!is_component_functioning("actuator"))