From 621d03a7fed81265c3c3ad1f16b580e4b2e8f0cc Mon Sep 17 00:00:00 2001 From: Certhic Date: Thu, 17 Sep 2020 13:11:07 +0200 Subject: [PATCH] 2 missing tgui.update --- code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm index f26ceefc5be..fffb5880516 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm @@ -723,12 +723,14 @@ new dried(loc) item_quants[S.name]-- qdel(S) + SStgui.update_uis(src) return TRUE for(var/obj/item/stack/sheet/wetleather/WL in contents) var/obj/item/stack/sheet/leather/L = new(loc) L.amount = WL.amount item_quants[WL.name]-- qdel(WL) + SStgui.update_uis(src) return TRUE return FALSE