From b1abc731990cefa186b28c1479ea0bc356fb8373 Mon Sep 17 00:00:00 2001 From: "trubblebass@gmail.com" Date: Wed, 15 Aug 2012 14:50:53 +0000 Subject: [PATCH] Fixes issue 789 Food and Lightbulb crates now cost 10 points, they should always have been 10 points anyway. As a note for future commits to prevent this happening again, do not make any crates with a cost less than 7 points. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4419 316c924e-a436-60f5-8080-3fe189b3f50e --- code/defines/obj/supplypacks.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/defines/obj/supplypacks.dm b/code/defines/obj/supplypacks.dm index 6aa1df960cd..b1d5eb03450 100644 --- a/code/defines/obj/supplypacks.dm +++ b/code/defines/obj/supplypacks.dm @@ -3,6 +3,7 @@ //NOTE: hidden packs only show up when the computer has been hacked. //ANOTER NOTE: Contraband is obtainable through modified supplycomp circuitboards. //BIG NOTE: Don't add living things to crates, that's bad, it will break the shuttle. +//NEW NOTE: Do NOT set the price of any crates below 7 points. Doing so allows infinite points. /datum/supply_packs/specialops name = "Special Ops supplies" @@ -31,7 +32,7 @@ "/obj/item/weapon/reagent_containers/food/snacks/grown/banana", "/obj/item/weapon/reagent_containers/food/snacks/grown/banana", "/obj/item/weapon/reagent_containers/food/snacks/grown/banana") - cost = 5 + cost = 10 containertype = "/obj/structure/closet/crate/freezer" containername = "Food crate" @@ -142,7 +143,7 @@ contains = list("/obj/item/weapon/storage/lightbox/mixed", "/obj/item/weapon/storage/lightbox/mixed", "/obj/item/weapon/storage/lightbox/mixed") - cost = 5 + cost = 10 containertype = "/obj/structure/closet/crate" containername = "Replacement lights"