From b3f145de10aab67b468d356c9c0a5727773d7279 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Sep 2020 16:20:13 -0700 Subject: [PATCH 1/3] Update species.dm --- code/modules/mob/living/carbon/human/species.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index fa9df8dd48..5d08780307 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -362,10 +362,11 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) if(H.client && has_field_of_vision && CONFIG_GET(flag/use_field_of_vision)) H.LoadComponent(/datum/component/field_of_vision, H.field_of_vision_type) - C.add_or_update_variable_movespeed_modifier(/datum/movespeed_modifier/species, TRUE, multiplicative_slowdown = speedmod) - + update_species_slowdown(C) SEND_SIGNAL(C, COMSIG_SPECIES_GAIN, src, old_species) +/datum/species/proc/update_species_slowdown(mob/living/carbon/human/H) + H.add_or_update_variable_movespeed_modifier(/datum/movespeed_modifier/species, TRUE, multiplicative_slowdown = speedmod) // EDIT ENDS From 731bab4bc94a088a7db3cf2baa36347b93f20d8c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Sep 2020 16:20:47 -0700 Subject: [PATCH 2/3] Update angel.dm --- code/modules/mob/living/carbon/human/species_types/angel.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/angel.dm b/code/modules/mob/living/carbon/human/species_types/angel.dm index 2cf054c7b9..7774ae44f3 100644 --- a/code/modules/mob/living/carbon/human/species_types/angel.dm +++ b/code/modules/mob/living/carbon/human/species_types/angel.dm @@ -1,4 +1,4 @@ -/datum/species/angel +t/datum/species/angel name = "Angel" id = "angel" default_color = "FFFFFF" @@ -141,4 +141,5 @@ H.setMovetype(H.movement_type & ~FLYING) override_float = FALSE H.pass_flags &= ~PASSTABLE - H.CloseWings() \ No newline at end of file + H.CloseWings() + update_species_slowdown(H) From ee44cfc5657c13986cc547cbbe1e8097a21e2464 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Sep 2020 22:06:11 -0700 Subject: [PATCH 3/3] Update angel.dm --- code/modules/mob/living/carbon/human/species_types/angel.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/angel.dm b/code/modules/mob/living/carbon/human/species_types/angel.dm index 7774ae44f3..3cae574a90 100644 --- a/code/modules/mob/living/carbon/human/species_types/angel.dm +++ b/code/modules/mob/living/carbon/human/species_types/angel.dm @@ -1,4 +1,4 @@ -t/datum/species/angel +/datum/species/angel name = "Angel" id = "angel" default_color = "FFFFFF"