From 9bb2cab1a0cb204bfb7d85a1bc1875ad8c9f2520 Mon Sep 17 00:00:00 2001 From: Twinmold Date: Wed, 3 Apr 2019 00:35:22 -0500 Subject: [PATCH] Less Parenthesis Simple, right? --- code/modules/paperwork/faxmachine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index 8bad3f9bf6e..875cd9c46d4 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -283,7 +283,7 @@ var/global/list/fax_blacklist = list() use_power(200) - if((!istype(copyitem, /obj/item/paper))&&(!istype(copyitem, /obj/item/photo))&&(!istype(copyitem, /obj/item/paper_bundle))) + if(!istype(copyitem, /obj/item/paper)&&!istype(copyitem, /obj/item/photo)&&!istype(copyitem, /obj/item/paper_bundle)) visible_message("[src] beeps, \"Error transmitting message.\"") return