mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 12:37:50 +01:00
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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user