From 786ef7c748e9a8e79bd1b68e74f06e41805f5a8a Mon Sep 17 00:00:00 2001 From: nikothedude <59709059+nikothedude@users.noreply.github.com> Date: Fri, 22 May 2026 23:23:22 -0400 Subject: [PATCH] Fixes boosted lycans having TOTAL slowdown immunity (#5652) ## About The Pull Request Title. I didnt know this other proc existed. ## Why It's Good For The Game Bugs bad. ## Proof Of Testing
Screenshots/Videos
## Changelog :cl: fix: Boosted lycans are now only immune to damage slowdown /:cl: --- .../modules/customization/species/lycans/_lycan_species.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm index 4231d192135..a342fa326ee 100644 --- a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm +++ b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm @@ -104,13 +104,13 @@ ADD_TRAIT(gainer, TRAIT_BATON_RESISTANCE, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_HARDLY_WOUNDED, SPECIES_TRAIT) - ADD_TRAIT(gainer, TRAIT_IGNORESLOWDOWN, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_FEARLESS, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_BRAWLING_KNOCKDOWN_BLOCKED, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_NO_STAGGER, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_NO_THROW_HITPUSH, SPECIES_TRAIT) ADD_TRAIT(gainer, TRAIT_MARTIAL_ARTS_UNUSABLE, SPECIES_TRAIT) + gainer.add_movespeed_mod_immunities(type, /datum/movespeed_modifier/damage_slowdown) gainer.AddComponent( \ /datum/component/regenerator, \ regeneration_delay = 5 SECONDS, \ @@ -124,13 +124,13 @@ /datum/species/lycan/proc/handle_gaian_physique_loss(mob/living/carbon/human/loser) REMOVE_TRAIT(loser, TRAIT_BATON_RESISTANCE, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_HARDLY_WOUNDED, SPECIES_TRAIT) - REMOVE_TRAIT(loser, TRAIT_IGNORESLOWDOWN, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_FEARLESS, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_BRAWLING_KNOCKDOWN_BLOCKED, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_NO_STAGGER, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_NO_THROW_HITPUSH, SPECIES_TRAIT) REMOVE_TRAIT(loser, TRAIT_MARTIAL_ARTS_UNUSABLE, SPECIES_TRAIT) + loser.remove_movespeed_mod_immunities(type, /datum/movespeed_modifier/damage_slowdown) qdel(loser.GetComponent(/datum/component/regenerator)) loser.physiology.stamina_mod *= 4