From e5759f21e3e5dc1f9ce1c7e661e9434a6e841104 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Wed, 22 Jan 2020 01:52:20 -0700 Subject: [PATCH] Update human_movement.dm --- .../code/modules/mob/living/carbon/human/human_movement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/mob/living/carbon/human/human_movement.dm b/modular_citadel/code/modules/mob/living/carbon/human/human_movement.dm index 4d8c7a4b25..cafd86ac26 100644 --- a/modular_citadel/code/modules/mob/living/carbon/human/human_movement.dm +++ b/modular_citadel/code/modules/mob/living/carbon/human/human_movement.dm @@ -13,9 +13,9 @@ /mob/living/carbon/human/movement_delay() . = 0 if(!resting && m_intent == MOVE_INTENT_RUN && sprinting) - var/static/datum/config_entry/movespeed/sprint_speed_increase/SSI + var/static/datum/config_entry/number/movespeed/sprint_speed_increase/SSI if(!SSI) - SSI = CONFIG_GET_ENTRY(movespeed/sprint_speed_increase) + SSI = CONFIG_GET_ENTRY(number/movespeed/sprint_speed_increase) . -= SSI.config_entry_value if(wrongdirmovedelay) . += 1