From eff2945f5f48b16d91deae8800da0425e630c8ac Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 16 Nov 2024 15:32:14 +0100 Subject: [PATCH] Fixes a missing arg in fish release code causing runtimes (#87932) ## About The Pull Request Fish release code didn't pass the releaser arg, causing runtimes in all listener procs. Test yer code. ## Changelog :cl: fix: Fixed a missing arg in fish release code causing runtimes /:cl: --- code/modules/fishing/fish/_fish.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/fishing/fish/_fish.dm b/code/modules/fishing/fish/_fish.dm index 8eee6f16635..033e6e60f2f 100644 --- a/code/modules/fishing/fish/_fish.dm +++ b/code/modules/fishing/fish/_fish.dm @@ -237,7 +237,7 @@ span_notice("You release [src] into [interacting_with]. [goodbye_text]"), \ span_notice("You hear a splash.")) playsound(interacting_with, 'sound/effects/splash.ogg', 50) - SEND_SIGNAL(interacting_with, COMSIG_FISH_RELEASED_INTO, src) + SEND_SIGNAL(interacting_with, COMSIG_FISH_RELEASED_INTO, src, user) qdel(src) return ITEM_INTERACT_SUCCESS