diff --git a/code/defines/obj/supplypacks.dm b/code/defines/obj/supplypacks.dm index 4786764e63a..f06b7cee68d 100644 --- a/code/defines/obj/supplypacks.dm +++ b/code/defines/obj/supplypacks.dm @@ -580,12 +580,12 @@ ..() -/datum/supply_packs/poster - contains = list("/obj/item/weapon/contraband/poster",) //We randomly pick 5 items from this list through the constructor, look below - name = "Poster crate" +/datum/supply_packs/contraband + contains = list("/obj/item/weapon/contraband/poster","/obj/item/weapon/cigpacket/dromedaryco") //We randomly pick 5 items from this list through the constructor, look below + name = "Contraband crate" cost = 30 - containertype = "/obj/structure/closet/crate/poster" - containername = "Poster crate" + containertype = "/obj/structure/closet/crate/contraband" + containername = "Contraband crate" contraband = 1 /datum/supply_packs/poster/New() @@ -593,19 +593,4 @@ for(var/i = 0,i<5,i++) tempContains += pick(contains) src.contains = tempContains - ..() - -/datum/supply_packs/cigarettes - contains = list("/obj/item/weapon/cigpacket/dromedaryco", - "/obj/item/weapon/cigpacket/dromedaryco", - "/obj/item/weapon/cigpacket/dromedaryco", - "/obj/item/weapon/cigpacket/dromedaryco", - "/obj/item/weapon/cigpacket/dromedaryco", - "/obj/item/weapon/cigpacket/dromedaryco",) - name = "DromedaryCo cigarettes crate" - cost = 15 - containertype = "/obj/structure/closet/crate/cigarettes" - containername = "DromedaryCo cigarettes crate" - contraband = 1 - -//SUPPLY PACKS \ No newline at end of file + ..() \ No newline at end of file