From fa58f7892c59c0ab4ff57d6b8f0ba48020a4f7b0 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Sat, 19 Jan 2019 20:29:48 +0100 Subject: [PATCH] Make fifty spawner accessible from quick create. --- code/modules/admin/create_object.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/create_object.dm b/code/modules/admin/create_object.dm index 3af71a74f2..8d2b8072f0 100644 --- a/code/modules/admin/create_object.dm +++ b/code/modules/admin/create_object.dm @@ -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") as null|anything in list("/obj","/obj/structure","/obj/item","/obj/item/weapon","/obj/item/clothing","/obj/machinery","/obj/mecha","/obj/item/weapon/storage/box/fluff") //VOREStation Edit + 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/fiftyspawner","/obj/mecha","/obj/item/weapon/storage/box/fluff") //VOREStation Edit if(!pathtext) return var path = text2path(pathtext)