diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index bcc946191c1..8ae7bb0ba4f 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -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 diff --git a/html/changelogs/BusinessTime.yml b/html/changelogs/BusinessTime.yml new file mode 100644 index 00000000000..50d2c023ecf --- /dev/null +++ b/html/changelogs/BusinessTime.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Business cards can now be properly copied at a photocopier."