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
🆑
fix: Fixed a missing arg in fish release code causing runtimes
/🆑
This commit is contained in:
SmArtKar
2024-11-16 15:32:14 +01:00
committed by GitHub
parent 8dee4abacf
commit eff2945f5f
+1 -1
View File
@@ -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