From d36990801ec79f848a75c66a7122729f087dafc7 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sat, 2 Mar 2024 22:37:24 +0100 Subject: [PATCH] [NO GBP] You can actually check what fishes can be caught while examining a spot now (#81772) ## About The Pull Request I've forgot to register the examine more signal since I moved the info there. ## Why It's Good For The Game Title. ## Changelog N/A . I doubt anyone will notice the blunder so soon. --- code/datums/components/fishing_spot.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/components/fishing_spot.dm b/code/datums/components/fishing_spot.dm index 7ee368e543e..2763d583f81 100644 --- a/code/datums/components/fishing_spot.dm +++ b/code/datums/components/fishing_spot.dm @@ -16,6 +16,7 @@ RegisterSignal(parent, COMSIG_ATOM_ATTACKBY, PROC_REF(handle_attackby)) RegisterSignal(parent, COMSIG_FISHING_ROD_CAST, PROC_REF(handle_cast)) RegisterSignal(parent, COMSIG_ATOM_EXAMINE, PROC_REF(on_examined)) + RegisterSignal(parent, COMSIG_ATOM_EXAMINE_MORE, PROC_REF(on_examined_more)) /datum/component/fishing_spot/Destroy() fish_source = null