From 9caf0b2e89876f6fc5ad2124176b1c5faaaddde7 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 18 Nov 2022 00:35:00 +0100 Subject: [PATCH] [MIRROR] Fixes a bug where chunky fingers were preventing roundstart PDA use [MDB IGNORE] (#17532) * Fixes a bug where chunky fingers were preventing roundstart PDA use (#71301) ## About The Pull Request Fixes #71180 #70422 Removed the !allow_chunky check introduced by #66358 ,I've re-added it. I've tested this and can confirm PDAs are usable again while modular consoles remain unusable. ## Why It's Good For The Game Fixes a rather frustrating bug ## Changelog :cl: fix: Roundstart PDAs can once again be used by people with chunky fingers. /:cl: * Fixes a bug where chunky fingers were preventing roundstart PDA use Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com> --- code/modules/modular_computers/computers/item/computer_ui.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/computers/item/computer_ui.dm b/code/modules/modular_computers/computers/item/computer_ui.dm index 07479385680..9821db8308f 100644 --- a/code/modules/modular_computers/computers/item/computer_ui.dm +++ b/code/modules/modular_computers/computers/item/computer_ui.dm @@ -16,7 +16,7 @@ if(!user.can_read(src, READING_CHECK_LITERACY)) return - if(ishuman(user)) + if(ishuman(user) && !allow_chunky) var/mob/living/carbon/human/human_user = user if(human_user.check_chunky_fingers()) balloon_alert(human_user, "fingers are too big!")