Tweaks and Fixes 2.0

This commit is contained in:
Fox-McCloud
2015-05-22 16:29:12 -04:00
parent 9b37335d53
commit 1c1eec3210
17 changed files with 111 additions and 23 deletions
@@ -91,12 +91,22 @@
slot_flags = SLOT_BELT
/obj/item/weapon/storage/fancy/candle_box/New()
/obj/item/weapon/storage/fancy/candle_box/full/New()
..()
for(var/i=1; i <= storage_slots; i++)
new /obj/item/candle(src)
return
/obj/item/weapon/storage/fancy/candle_box/eternal
name = "Eternal Candle pack"
desc = "A pack of red candles made with a special wax."
/obj/item/weapon/storage/fancy/candle_box/eternal/New()
..()
for(var/i=1; i <= storage_slots; i++)
new /obj/item/candle/eternal(src)
return
/*
* Crayon Box
*/
@@ -169,7 +179,7 @@
unlaced_cigarettes += C
for(var/R in default_reagents)
reagents.add_reagent(R, default_reagents[R])
/obj/item/weapon/storage/fancy/cigarettes/Destroy()
del(reagents)