From dd77eae4056f047eee34f405090ae4b860a65948 Mon Sep 17 00:00:00 2001 From: Nanai Date: Thu, 21 Nov 2013 16:54:01 -0500 Subject: [PATCH] Custom Belt Fix Edited issue with chemicals spawned. --- code/modules/customitems/item_defines.dm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index afbbc43b8b..05bb2a30dd 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -933,20 +933,19 @@ New() ..() - new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, "bicaridine", 14, "Bicaridine") - new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, "dermaline", 15, "Dermaline") - new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, "anti_toxin", 16, "Dylovene") - new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, "dexalinp", 17, "Dexalin Plus") - new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, "tricordrazine", 18, "Tricordrazine") + new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, 14, "Bicaridine") + new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, 15, "Dermaline") + new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, 16, "Dylovene") + new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, 17, "Dexalin Plus") + new /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle(src, 18, "Tricordrazine") new /obj/item/weapon/reagent_containers/syringe/(src) new /obj/item/device/healthanalyzer(src) /obj/item/weapon/reagent_containers/glass/bottle/fluff/nashi_bottle icon = 'icons/obj/chemical.dmi' flags = FPRINT | TABLEPASS //Starting them with lids on them. Safety first! - New(loc, var/stuff, var/color, var/labeled) + New(loc, var/color, var/labeled) ..() name = "[labeled] bottle" desc = "A small bottle. Contains [labeled]" icon_state = "bottle[color]" - reagents.add_reagent(stuff, 30)