From 9caf76d0695f04fad637fab97217eafc466cb4b0 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Thu, 5 Feb 2015 00:41:59 -0500 Subject: [PATCH] Glass bottles are now dispensed with the lid on It seemed kind of silly that vendors, for example, would dispense bottles with their lids off. --- code/modules/hydroponics/hydro_tools.dm | 2 +- code/modules/reagents/reagent_containers/glass/bottle.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/hydro_tools.dm b/code/modules/hydroponics/hydro_tools.dm index 52a4dd96018..2d9261d97d1 100644 --- a/code/modules/hydroponics/hydro_tools.dm +++ b/code/modules/hydroponics/hydro_tools.dm @@ -270,7 +270,7 @@ desc = "A small glass bottle. Can hold up to 10 units." icon = 'icons/obj/chemical.dmi' icon_state = "bottle-4" - flags = OPENCONTAINER + flags = 0 possible_transfer_amounts = null w_class = 2.0 diff --git a/code/modules/reagents/reagent_containers/glass/bottle.dm b/code/modules/reagents/reagent_containers/glass/bottle.dm index eed421fe3f4..2384343ab5c 100644 --- a/code/modules/reagents/reagent_containers/glass/bottle.dm +++ b/code/modules/reagents/reagent_containers/glass/bottle.dm @@ -9,7 +9,7 @@ item_state = "atoxinbottle" amount_per_transfer_from_this = 10 possible_transfer_amounts = list(5,10,15,25,30,60) - flags = OPENCONTAINER + flags = 0 volume = 60 on_reagent_change()