[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
🆑
fix: Roundstart PDAs can once again be used by people with chunky
fingers.
/🆑

* Fixes a bug where chunky fingers were preventing roundstart PDA use

Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-11-18 00:35:00 +01:00
committed by GitHub
parent dc6ada7455
commit 9caf0b2e89
@@ -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!")