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.
/🆑
This commit is contained in:
NamelessFairy
2022-11-17 17:32:10 +00:00
committed by GitHub
parent 8c6582886f
commit 3623ccbf28
@@ -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!")