From 6623b2bab50b0ae335701532761031f35a0a1787 Mon Sep 17 00:00:00 2001 From: blackdav123 <106282690+blackdav123@users.noreply.github.com> Date: Mon, 2 Dec 2024 17:04:52 -0600 Subject: [PATCH] Defiler and carrier can now pick reagents/huggers while staggered (#16766) --- .../living/carbon/xenomorph/castes/carrier/abilities_carrier.dm | 2 +- .../living/carbon/xenomorph/castes/defiler/abilities_defiler.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/carrier/abilities_carrier.dm b/code/modules/mob/living/carbon/xenomorph/castes/carrier/abilities_carrier.dm index 6cb4c0464f6ea..b684615c3cbce 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/carrier/abilities_carrier.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/carrier/abilities_carrier.dm @@ -264,7 +264,7 @@ GLOBAL_LIST_INIT(hugger_images_list, list( KEYBINDING_NORMAL = COMSIG_XENOABILITY_CHOOSE_HUGGER, KEYBINDING_ALTERNATE = COMSIG_XENOABILITY_SWITCH_HUGGER, ) - use_state_flags = ABILITY_USE_LYING + use_state_flags = ABILITY_USE_LYING|ABILITY_USE_STAGGERED /datum/action/ability/xeno_action/choose_hugger_type/give_action(mob/living/L) . = ..() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/defiler/abilities_defiler.dm b/code/modules/mob/living/carbon/xenomorph/castes/defiler/abilities_defiler.dm index 359ef1c9e3aaa..b67c35636efa6 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/defiler/abilities_defiler.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/defiler/abilities_defiler.dm @@ -359,7 +359,7 @@ action_icon_state = "select_reagent0" action_icon = 'icons/Xeno/actions/defiler.dmi' desc = "Selects which reagent to use for reagent slash and noxious gas. Neuro causes increasing pain and stamina damage. Hemodile slows targets down, multiplied by each other xeno-based toxin. Transvitox converts burns to toxin, and causes additional toxin damage when they take brute damage, both effects multiplied by other xeno-based toxins. Ozelomelyn purges all medicines from their system rapidly and causes minor toxin damage." - use_state_flags = ABILITY_USE_BUSY|ABILITY_USE_LYING + use_state_flags = ABILITY_USE_BUSY|ABILITY_USE_LYING|ABILITY_USE_STAGGERED keybinding_signals = list( KEYBINDING_NORMAL = COMSIG_XENOABILITY_SELECT_REAGENT, KEYBINDING_ALTERNATE = COMSIG_XENOABILITY_RADIAL_SELECT_REAGENT,