From fe3117a00631f69152267b4884559f34c8578558 Mon Sep 17 00:00:00 2001 From: BurgerLua Date: Wed, 18 Sep 2019 14:49:00 -0700 Subject: [PATCH 1/2] Added Jetpack Tweaks --- code/modules/mob/living/carbon/human/species.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 7855e9f4fa..db07caa95c 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1338,10 +1338,10 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) var/obj/item/organ/cyberimp/chest/thrusters/T = H.getorganslot(ORGAN_SLOT_THRUSTERS) if(!istype(J) && istype(C)) J = C.jetpack - if(istype(J) && J.full_speed && J.allow_thrust(0.01, H)) //Prevents stacking - . -= 2 - else if(istype(T) && T.allow_thrust(0.01, H)) - . -= 2 + if(istype(J) && J.full_speed && J.allow_thrust(0.005, H)) //Prevents stacking + . -= 1 + else if(istype(T) && T.allow_thrust(0.005, H)) + . -= 1 if(!ignoreslow && gravity) if(H.wear_suit) From 9003404ea80a9c256ee9cf594028c85a1bdc4415 Mon Sep 17 00:00:00 2001 From: BurgerLua Date: Wed, 18 Sep 2019 15:16:02 -0700 Subject: [PATCH 2/2] Further tweak --- code/modules/mob/living/carbon/human/species.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index db07caa95c..c23ca34188 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1339,9 +1339,9 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) if(!istype(J) && istype(C)) J = C.jetpack if(istype(J) && J.full_speed && J.allow_thrust(0.005, H)) //Prevents stacking - . -= 1 + . -= 0.4 else if(istype(T) && T.allow_thrust(0.005, H)) - . -= 1 + . -= 0.4 if(!ignoreslow && gravity) if(H.wear_suit)