mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
[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:
@@ -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!")
|
||||
|
||||
Reference in New Issue
Block a user