diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index b5d203a166..abfd45d269 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -265,5 +265,5 @@ #define HUMAN_FIRE_STACK_ICON_NUM 3 -#define PULL_PRONE_SLOWDOWN 1.5 -#define HUMAN_CARRY_SLOWDOWN 0.35 \ No newline at end of file +#define PULL_PRONE_SLOWDOWN 0.6 +#define HUMAN_CARRY_SLOWDOWN 0 \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 29b7fe78c8..39309ac075 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -876,7 +876,7 @@ if(can_be_firemanned(target)) visible_message("[src] starts lifting [target] onto their back...", "You start lifting [target] onto your back...") - if(do_after(src, 50, TRUE, target)) + if(do_after(src, 30, TRUE, target)) //Second check to make sure they're still valid to be carried if(can_be_firemanned(target) && !incapacitated(FALSE, TRUE)) target.resting = FALSE