Fixes sheets runtiming on ORM (#25464)

This commit is contained in:
Leo
2017-03-25 16:29:09 -03:00
committed by KorPhaeron
parent 1b0150c32b
commit 005f8f1889
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -232,7 +232,7 @@
if(!(text2path(href_list["release"]) in stack_list))
return
var/obj/item/stack/sheet/inp = stack_list[text2path(href_list["release"])]
var/obj/item/stack/sheet/out = new inp.type(src,merge=FALSE)
var/obj/item/stack/sheet/out = new inp.type(src, 0, FALSE)
var/desired = input("How many sheets?", "How many sheets to eject?", 1) as null|num
out.amount = round(min(desired,50,inp.amount))
if(out.amount)