From d9d3bc61f3c1343ff41c8ca2c7fb601229619e38 Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Sun, 20 Sep 2020 02:45:04 -0700 Subject: [PATCH] Quickfix for fax machines not working --- code/modules/paperwork/photocopier.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 03a126f4838..07009a99c09 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -62,6 +62,7 @@ switch(action) if("make_copy") addtimer(CALLBACK(src, .proc/copy_operation, usr), 0) + . = TRUE if("remove") if(copyitem) copyitem.loc = usr.loc @@ -70,8 +71,10 @@ copyitem = null else if(has_buckled_mobs()) to_chat(buckled_mobs[1], "You feel a slight pressure on your ass.") // It can't eject your asscheeks, but it'll try. + . = TRUE if("set_copies") copies = clamp(text2num(params["num_copies"]), 1, maxcopies) + . = TRUE if("ai_photo") if(!issilicon(usr)) return @@ -94,8 +97,7 @@ else p.desc += " - Copied by [tempAI.name]" toner -= 5 - - return TRUE + . = TRUE /obj/machinery/photocopier/proc/copy_operation(var/mob/user) if(copying)