From 2a1d84fec6dd096b5ebe8423c547726fb8660f1c Mon Sep 17 00:00:00 2001 From: Spades Date: Sun, 25 Sep 2016 18:43:26 -0400 Subject: [PATCH] Fixes contraband maybe for real this time (#588) * Fixes contraband crate * Fixes contraband maybe for real this time * wrong name --- code/datums/supplypacks/contraband_vr.dm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/code/datums/supplypacks/contraband_vr.dm b/code/datums/supplypacks/contraband_vr.dm index b419b210faf..89e55ea04d4 100644 --- a/code/datums/supplypacks/contraband_vr.dm +++ b/code/datums/supplypacks/contraband_vr.dm @@ -1,8 +1,7 @@ -/datum/supply_packs/stolen - name = "Stolen supplies" - contains = list(/obj/item/stolenpackage) +/datum/supply_packs/supply/stolen + name = "Stolen supply crate" + contains = list(/obj/item/stolenpackage = 1) cost = 150 containertype = /obj/structure/closet/crate containername = "Stolen crate" - contraband = 1 - group = "Supplies" \ No newline at end of file + contraband = 1 \ No newline at end of file