[MIRROR] Fix puzzlegrids not reporting their answer (#27040)

* Fix puzzlegrids not reporting their answer (#82213)

## About The Pull Request

`src` is a a datum, so `get_hearers_in_view` fails

## Changelog

🆑 Melbert
fix: Puzzlegrids now report their answers properly
/🆑

* Fix puzzlegrids not reporting their answer

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
SkyratBot
2024-04-04 01:45:04 -04:00
committed by GitHub
co-authored by MrMelbert
parent 991efb4fed
commit 0ebe8afd0a
+1 -1
View File
@@ -172,7 +172,7 @@
var/message = answers.Join("<p>-----</p>")
for (var/mob/mob as anything in get_hearers_in_view(DEFAULT_MESSAGE_RANGE, src))
for (var/mob/mob in get_hearers_in_view(DEFAULT_MESSAGE_RANGE, parent))
to_chat(mob, message)
/datum/component/puzzgrid/ui_data(mob/user)