From ef50918b9c052bcb476335458f6ad2cb460f29a0 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Tue, 24 Mar 2015 12:45:37 +1030 Subject: [PATCH] Hackfix for #8588 --- code/modules/hydroponics/seed_packets.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm index 21472e8ab23..093c4d7926f 100644 --- a/code/modules/hydroponics/seed_packets.dm +++ b/code/modules/hydroponics/seed_packets.dm @@ -12,6 +12,8 @@ var/global/list/plant_seed_sprites = list() var/modified = 0 /obj/item/seeds/New() + while(!plant_controller) + sleep(30) update_seed() ..()