Added /obj/item/stack path to Quick Create Object of Game Panel.

This commit is contained in:
xxalpha
2015-04-12 17:38:01 +01:00
parent 8bbad98700
commit cb800d3070

View File

@@ -15,7 +15,7 @@
var/quick_create_object_html = null
var/pathtext = null
pathtext = input("Select the path of the object you wish to create.", "Path", "/obj") in list("/obj","/obj/structure","/obj/item","/obj/item/clothing","/obj/item/weapon/reagent_containers/food","/obj/item/weapon","/obj/machinery")
pathtext = input("Select the path of the object you wish to create.", "Path", "/obj") in list("/obj","/obj/structure","/obj/item","/obj/item/clothing","/obj/item/weapon/reagent_containers/food","/obj/item/weapon","/obj/machinery","/obj/item/stack")
var path = text2path(pathtext)