From 3885d756213395af3410815165b545424e5e7fa2 Mon Sep 17 00:00:00 2001 From: Wise Monster Date: Tue, 10 Dec 2024 12:53:33 -0500 Subject: [PATCH] Fix ponchos update --- .../code/modules/blueshift/components/toggle_clothing.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/monkestation/code/modules/blueshift/components/toggle_clothing.dm b/monkestation/code/modules/blueshift/components/toggle_clothing.dm index b445b9a86da0..af1fe6444533 100644 --- a/monkestation/code/modules/blueshift/components/toggle_clothing.dm +++ b/monkestation/code/modules/blueshift/components/toggle_clothing.dm @@ -24,4 +24,5 @@ toggled = !toggled source.icon_state = (toggled ? toggled_icon_state : initial(source.icon_state)) to_chat(clicker, "You toggle \the [source]!") + source.update_slot_icon() clicker.update_appearance()