From c2c28be35f5d518b142a46b87b30a15bb969745e Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 14 Jan 2024 07:41:00 -0500 Subject: [PATCH] fixed bluespace harvester not reconnecting to powernet properly remake (#23792) --- code/modules/station_goals/bluespace_tap.dm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/station_goals/bluespace_tap.dm b/code/modules/station_goals/bluespace_tap.dm index a4887697fca..8bfee153130 100644 --- a/code/modules/station_goals/bluespace_tap.dm +++ b/code/modules/station_goals/bluespace_tap.dm @@ -316,12 +316,14 @@ /obj/machinery/power/bluespace_tap/connect_to_network() - ..() - update_icon() + . = ..() + if(.) + update_icon() /obj/machinery/power/bluespace_tap/disconnect_from_network() - ..() - update_icon() + . = ..() + if(.) + update_icon() /obj/machinery/power/bluespace_tap/Destroy() QDEL_LIST_CONTENTS(fillers)