From 4c500fb3d691734a1ff13ad36adb694c6b3ee657 Mon Sep 17 00:00:00 2001 From: ParaGitV <109384402+ParaGitV@users.noreply.github.com> Date: Wed, 31 Aug 2022 05:15:50 -0700 Subject: [PATCH] Golem shells require more dexterity (#18902) * Golem shells require more dexterity * Update check I'm dumb and forgot ishuman exists Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update check 2.0 Because I'm turbo blind * Update tres Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> --- .../awaymissions/mission_code/ghost_role_spawners/golems.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/awaymissions/mission_code/ghost_role_spawners/golems.dm b/code/modules/awaymissions/mission_code/ghost_role_spawners/golems.dm index 816e84c2fc3..974453e3594 100644 --- a/code/modules/awaymissions/mission_code/ghost_role_spawners/golems.dm +++ b/code/modules/awaymissions/mission_code/ghost_role_spawners/golems.dm @@ -40,6 +40,10 @@ /obj/item/stack/sheet/plastic = /datum/species/golem/plastic) if(istype(I, /obj/item/stack)) + if(!ishuman(user)) + to_chat(user, "You don't have the dexterity to do this!") + return + var/obj/item/stack/O = I var/species = golem_shell_species_types[O.merge_type] if(species)