From 5270c3feba76e751be3d2841db747c8c520d7e5a Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 17 Aug 2026 21:06:56 +0100 Subject: [PATCH] fixes holosphere shells not getting real_name set resulting in quirky behaviour (#7644) --- code/modules/species/holosphere/transform.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/species/holosphere/transform.dm b/code/modules/species/holosphere/transform.dm index 02c51770796..1f20853d657 100644 --- a/code/modules/species/holosphere/transform.dm +++ b/code/modules/species/holosphere/transform.dm @@ -4,6 +4,7 @@ return if(force || !IS_DEAD(holosphere_shell)) holosphere_shell.name = H.name + holosphere_shell.real_name = H.name try_exit_recharge_station() if(transform_component.try_transform()) H.drop_held_items()