From 450ecba26319905eea4fd360f7a2576b9450eb25 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 4 Jul 2024 12:50:18 -0700 Subject: [PATCH] Fixes a copy+paste typo causing royal jelly to be mead and mead to be nothing (#6573) ## About The Pull Request As title ## Why It's Good For The Game Bottles should work ## Changelog :cl: fix: Ambrosia Mead, Wax-Sealed Royal Jelly now contain the proper drinks /:cl: --- code/modules/food/drinks/bottle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food/drinks/bottle.dm b/code/modules/food/drinks/bottle.dm index 3c64ffaf6d1..ac9f648ac27 100644 --- a/code/modules/food/drinks/bottle.dm +++ b/code/modules/food/drinks/bottle.dm @@ -390,7 +390,7 @@ icon_state = "ambrosia_mead" center_of_mass = list("x"=4, "y"=12) -/obj/item/reagent_containers/food/drinks/bottle/royaljelly/Initialize(mapload) +/obj/item/reagent_containers/food/drinks/bottle/ambrosia_mead/Initialize(mapload) . = ..() reagents.add_reagent("mead", 100)