[MIRROR] Shredder accepts 40 pages before being full instead of 10 (#12979)

Co-authored-by: nesquik <24830358+lbnesquik@users.noreply.github.com>
Co-authored-by: betta <forbiddenbetta@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-08-22 12:45:42 -04:00
committed by GitHub
co-authored by nesquik betta
parent 7691e3aa48
commit 929b995a46
+5 -1
View File
@@ -14,7 +14,7 @@
active_power_usage = 200
power_channel = EQUIP
circuit = /obj/item/circuitboard/papershredder
var/max_paper = 10
var/max_paper = 40
var/paperamount = 0
var/list/shred_amounts = list(
/obj/item/photo = 1,
@@ -31,6 +31,10 @@
update_icon()
AddElement(/datum/element/climbable)
/obj/machinery/papershredder/examine(mob/user as mob)
. = ..()
. += "A little amber screen shows there's [paperamount] sheets worth of paper in the bin."
/obj/machinery/papershredder/attackby(obj/item/W, mob/user)
if(istype(W, /obj/item/storage))