Larger job and preferences windows but still lesser than 764. More choices in "Quick Create Object" menu.

This commit is contained in:
Intercross21
2014-05-04 18:11:11 +04:00
parent ce376eda1d
commit 02ce933297
2 changed files with 5 additions and 4 deletions

View File

@@ -15,8 +15,9 @@
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/weapon","/obj/machinery")
pathtext = input("Select the path of the object you wish to create.", "Path", "/obj") as null|anything in list("/obj","/obj/structure","/obj/item","/obj/item/weapon","/obj/item/clothing","/obj/machinery","/obj/mecha")
if(!pathtext)
return
var path = text2path(pathtext)
if (!quick_create_object_html)