Shredder accepts 40 pages before being full instead of 10 (#19666)

* Shredder accepts 40 pages before being full instead of 10

* Updated the description

---------

Co-authored-by: betta <forbiddenbetta@gmail.com>
This commit is contained in:
nesquik
2026-08-22 11:52:58 -04:00
committed by GitHub
co-authored by betta
parent f784bb65c7
commit 54d4d27fe5
+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))