From 3623ccbf283434a9cbdfb531a0c17dde67956ee9 Mon Sep 17 00:00:00 2001 From: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com> Date: Thu, 17 Nov 2022 17:32:10 +0000 Subject: [PATCH] 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: --- 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!")