diff --git a/code/datums/supplypacks/science_vr.dm b/code/datums/supplypacks/science_vr.dm index c1c164f995..8dc9ed5a9b 100644 --- a/code/datums/supplypacks/science_vr.dm +++ b/code/datums/supplypacks/science_vr.dm @@ -30,7 +30,7 @@ /datum/supply_packs/sci/dune_buggy name = "Exploration Dune Buggy" contains = list( - /obj/vehicle/train/rover/engine/dune_buggy + /obj/vehicle/train/rover/engine/dunebuggy ) cost = 100 containertype = /obj/structure/largecrate diff --git a/code/modules/admin/create_object.dm b/code/modules/admin/create_object.dm index 3778441b1d..3af71a74f2 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") + 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 if(!pathtext) return var path = text2path(pathtext)