From 29ec9d01b23ca86e70dcaf31e6ac54d2dd9a42e6 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Wed, 24 Nov 2021 18:30:44 -0600 Subject: [PATCH] Fixes hydroponics tray icon on spading / changing seeds (#62900) Fixes #62893 Updates the appearance of a tray after a new seed is set. I didn't include an update_icon argument since I feel that changing the seed should always change the icon, but I can if it's needed. Why It's Good For The Game Makes plants you destroy actually go away. Changelog cl Melbert fix: Spading plants correctly updates the tray icon again /cl --- code/modules/hydroponics/hydroponics.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 42b2106656a..ff2f7aedc1d 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -351,6 +351,7 @@ if(myseed && myseed.loc != src) myseed.forceMove(src) SEND_SIGNAL(src, COMSIG_HYDROTRAY_SET_SEED, new_seed) + update_appearance() /* * Setter proc to set a tray to a new self_sustaining state and update all values associated with it.