From c848981604f1b48daa5a76bdf3e9bd25d9b305d0 Mon Sep 17 00:00:00 2001 From: SeepingVisage <160535199+SeepingVisage@users.noreply.github.com> Date: Mon, 9 Dec 2024 20:37:45 -0500 Subject: [PATCH] makes it so that the bottles retain their original names original names for bigbottles even if filled with something else --- GainStation13/code/modules/food_and_drinks/bigbottle.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/modules/food_and_drinks/bigbottle.dm b/GainStation13/code/modules/food_and_drinks/bigbottle.dm index 9f2afacc3f..5634852db0 100644 --- a/GainStation13/code/modules/food_and_drinks/bigbottle.dm +++ b/GainStation13/code/modules/food_and_drinks/bigbottle.dm @@ -39,9 +39,9 @@ var/mutable_appearance/reagent_overlay = mutable_appearance(icon, "reagent") if(reagents.reagent_list.len) var/datum/reagent/R = reagents.get_master_reagent() - if(!renamedByPlayer) + /*if(!renamedByPlayer) name = "bottle of " + R.name - desc = R.glass_desc + desc = R.glass_desc*/ var/percent = round((reagents.total_volume / volume) * 100) switch(percent)