From 2e448943215cb06ddbfa0f1d2c360de0bc802e87 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 15 Sep 2024 13:57:32 +0200 Subject: [PATCH] [NO GBP] Fixes aquarium props not showing up in the aquarium. (#86618) ## About The Pull Request RegisterSignals apparently doesn't throw warnings when the signals arg is not a list and just silently fails. ## Why It's Good For The Game Fixing stuff. ## Changelog :cl: fix: Fixed aquarium props not showing up inside the aquarium. /:cl: --- code/modules/fishing/aquarium/aquarium_kit.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/fishing/aquarium/aquarium_kit.dm b/code/modules/fishing/aquarium/aquarium_kit.dm index 03fe2c5aef5..11fd841009d 100644 --- a/code/modules/fishing/aquarium/aquarium_kit.dm +++ b/code/modules/fishing/aquarium/aquarium_kit.dm @@ -123,7 +123,7 @@ /obj/item/aquarium_prop/Initialize(mapload) . = ..() //It's important that we register the signals before the component is attached. - RegisterSignals(src, COMSIG_AQUARIUM_CONTENT_GENERATE_APPEARANCE, PROC_REF(generate_aquarium_appearance)) + RegisterSignal(src, COMSIG_AQUARIUM_CONTENT_GENERATE_APPEARANCE, PROC_REF(generate_aquarium_appearance)) AddComponent(/datum/component/aquarium_content, beauty = beauty) ADD_TRAIT(src, TRAIT_UNIQUE_AQUARIUM_CONTENT, INNATE_TRAIT)