Makes the photocopier able to copy business cards (#12066)

This commit is contained in:
Casper3667
2021-06-25 23:59:58 +02:00
committed by GitHub
parent d2af90b65a
commit 898f2f2e53
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -160,7 +160,7 @@ VUEUI_MONITOR_VARS(/obj/machinery/photocopier, photocopiermonitor)
return
/proc/copy(var/obj/machinery/target, var/obj/item/paper/copy, var/print = TRUE, var/use_sound = TRUE, var/delay = 10, var/toner) // note: var/delay is the delay from copy to print, it should be less than the sleep in copy_type()
var/obj/item/paper/c = new /obj/item/paper()
var/obj/item/paper/c = new copy.type(target)
var/info
var/pname
if (toner > 10) //lots of toner, make it dark
+6
View File
@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- rscadd: "Business cards can now be properly copied at a photocopier."