From ce5dbfb83efaf645e596e83d3e7ccb3474487d5f Mon Sep 17 00:00:00 2001 From: magey3 <34864694+magey3@users.noreply.github.com> Date: Mon, 27 May 2019 12:57:04 +0200 Subject: [PATCH] Fixes mixing beer with other drinks breaking the sprite (#44145) About The Pull Request fixes: #43070 All credit for this should go to @ExcessiveUseOfCobblestone as he made a comment on the issue that fixed it perfectly. All I did was implement it since it wasn't in the code yet and the bug was still there. Why It's Good For The Game Bug fixes are always good. Changelog cl Fire Chance fix: Fixed the drink sprites overlapping when you are mixing beer with other drinks. /cl --- code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm index 500d3c228a3..c364722e115 100644 --- a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm +++ b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm @@ -24,6 +24,7 @@ icon_state = R.glass_icon_state else var/mutable_appearance/reagent_overlay = mutable_appearance(icon, "glassoverlay") + icon_state = "glass_empty" reagent_overlay.color = mix_color_from_reagents(reagents.reagent_list) add_overlay(reagent_overlay) else