From 3b2ec5c134347ed2f1237468960b473736fb1fed Mon Sep 17 00:00:00 2001 From: yyzsong <65325586+yyzsong@users.noreply.github.com> Date: Wed, 25 Dec 2024 08:20:17 -0600 Subject: [PATCH] Ravager can endure and rage in fog/dense objects (#16839) --- .../carbon/xenomorph/castes/ravager/abilities_ravager.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/ravager/abilities_ravager.dm b/code/modules/mob/living/carbon/xenomorph/castes/ravager/abilities_ravager.dm index f6804fa017940..cd843e60643e9 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/ravager/abilities_ravager.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/ravager/abilities_ravager.dm @@ -204,7 +204,7 @@ keybinding_signals = list( KEYBINDING_NORMAL = COMSIG_XENOABILITY_ENDURE, ) - use_state_flags = ABILITY_USE_STAGGERED //Can use this while staggered + use_state_flags = ABILITY_USE_STAGGERED|ABILITY_USE_SOLIDOBJECT //Can use this while staggered ///How low the Ravager's health can go while under the effects of Endure before it dies var/endure_threshold = RAVAGER_ENDURE_HP_LIMIT ///Timer for Endure's duration @@ -320,6 +320,7 @@ ability_cost = 0 //We're limited by cooldowns, not plasma cooldown_duration = 60 SECONDS keybind_flags = ABILITY_KEYBIND_USE_ABILITY | ABILITY_IGNORE_SELECTED_ABILITY + use_state_flags = ABILITY_USE_SOLIDOBJECT keybinding_signals = list( KEYBINDING_NORMAL = COMSIG_XENOABILITY_RAGE, )