Added cancel button (#36953)

This commit is contained in:
Davidj361
2018-04-06 11:48:02 +03:00
committed by vuonojenmustaturska
parent 263262f3fa
commit e5d407a1a9
+1 -1
View File
@@ -339,7 +339,7 @@
return
//get amount from user
var/max = get_amount()
var/stackmaterial = round(input(user,"How many sheets do you wish to take out of this stack? (Maximum [max])") as num)
var/stackmaterial = round(input(user,"How many sheets do you wish to take out of this stack? (Maximum [max])") as null|num)
max = get_amount()
stackmaterial = min(max, stackmaterial)
if(stackmaterial == null || stackmaterial <= 0 || !user.canUseTopic(src, BE_CLOSE, ismonkey(user)))