From 59f4989885c22c7e003d8c262173f5516679d27b Mon Sep 17 00:00:00 2001 From: MichiRecRoom <1008889+LikeLakers2@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:37:05 -0500 Subject: [PATCH] Exclude plastic cards from being inserted as paper into computers --- code/modules/modular_computers/computers/item/computer.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/modular_computers/computers/item/computer.dm b/code/modules/modular_computers/computers/item/computer.dm index afcd56f40cb8..c9de59af0e25 100644 --- a/code/modules/modular_computers/computers/item/computer.dm +++ b/code/modules/modular_computers/computers/item/computer.dm @@ -749,6 +749,11 @@ GLOBAL_LIST_EMPTY(TabletMessengers) // a list of all active messengers, similar return if(istype(attacking_item, /obj/item/paper)) + //MONKESTATION EDIT START + // Don't allow plastic cards (including the spare ID safe code biscuits!) to be inserted + if(istype(attacking_item, /obj/item/paper/paperslip/corporate)) + return + //MONKESTATION EDIT END if(stored_paper >= max_paper) balloon_alert(user, "no more room!") return