From 4ef37b9c155d2f65334d2cefdf420c15a9dbbf0f Mon Sep 17 00:00:00 2001 From: Erika Fox <94164348+Erikafox@users.noreply.github.com> Date: Tue, 19 Nov 2024 18:29:17 -0500 Subject: [PATCH] holopads now say the area disconnected on call end (#3773) :cl: fix: holopads now say the area disconnected on call end /:cl: --- code/datums/holocall.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/holocall.dm b/code/datums/holocall.dm index e6733b8d5612..d394d7707be8 100644 --- a/code/datums/holocall.dm +++ b/code/datums/holocall.dm @@ -112,7 +112,7 @@ var/area/A = get_area(connected_holopad) calling_holopad.say("[A] holopad disconnected.") else if(H == calling_holopad && connected_holopad) - connected_holopad.say("[user] disconnected.") + connected_holopad.say("[caller_location] disconnected.") ConnectionFailure(H, TRUE)