From 190fcb312b2ee99f78e86c2f6960f95d575333bf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 1 Jan 2021 12:24:46 -0700 Subject: [PATCH 1/3] Update mobs.dm --- code/modules/movespeed/modifiers/mobs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/movespeed/modifiers/mobs.dm b/code/modules/movespeed/modifiers/mobs.dm index f6cf84eb83..af1a465701 100644 --- a/code/modules/movespeed/modifiers/mobs.dm +++ b/code/modules/movespeed/modifiers/mobs.dm @@ -141,6 +141,8 @@ var/mob/living/L = target if(!(L.mobility_flags & MOBILITY_STAND)) return + if(isrobot(target)) + return max(1, existing + 1) var/static/datum/config_entry/number/movedelay/sprint_max_tiles_increase/SMTI if(!SMTI) SMTI = CONFIG_GET_ENTRY(number/movedelay/sprint_max_tiles_increase) From da358fa60a48c750c514ad4d82f6a0d685957f48 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 3 Jan 2021 18:12:33 -0700 Subject: [PATCH 2/3] Update mobs.dm --- code/modules/movespeed/modifiers/mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/movespeed/modifiers/mobs.dm b/code/modules/movespeed/modifiers/mobs.dm index af1a465701..da31346575 100644 --- a/code/modules/movespeed/modifiers/mobs.dm +++ b/code/modules/movespeed/modifiers/mobs.dm @@ -141,7 +141,7 @@ var/mob/living/L = target if(!(L.mobility_flags & MOBILITY_STAND)) return - if(isrobot(target)) + if(iscyborg(target)) return max(1, existing + 1) var/static/datum/config_entry/number/movedelay/sprint_max_tiles_increase/SMTI if(!SMTI) From 2ad58a7a9d9a2b2fa6c39c3d5107f7677ae7e3f2 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 5 Jan 2021 17:47:05 -0700 Subject: [PATCH 3/3] Update mobs.dm --- code/modules/movespeed/modifiers/mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/movespeed/modifiers/mobs.dm b/code/modules/movespeed/modifiers/mobs.dm index da31346575..d453124b71 100644 --- a/code/modules/movespeed/modifiers/mobs.dm +++ b/code/modules/movespeed/modifiers/mobs.dm @@ -142,7 +142,7 @@ if(!(L.mobility_flags & MOBILITY_STAND)) return if(iscyborg(target)) - return max(1, existing + 1) + return max(1, existing - 1) var/static/datum/config_entry/number/movedelay/sprint_max_tiles_increase/SMTI if(!SMTI) SMTI = CONFIG_GET_ENTRY(number/movedelay/sprint_max_tiles_increase)