From e9d8e8ee4f2131c4b123fcf1251f5a0df8bc7ff5 Mon Sep 17 00:00:00 2001 From: TheEmber <40074315+TheEmber@users.noreply.github.com> Date: Mon, 4 Aug 2025 09:11:26 +0200 Subject: [PATCH] Fixed echolocation/psyker (#92434) ## About The Pull Request Fixes bitrunning psykers. I dont really know why that one line was commented, but it seems to work fine and as intended with it. Regular psykers not blind anymore, while bitrunning ones cant see nothing but outlines. [#91490 Makes psyker playable](https://github.com/tgstation/tgstation/pull/91490) [#91713 psychic bitrunning domains do not show you anything](https://github.com/tgstation/tgstation/issues/91713) ## Why It's Good For The Game Bugfix ## Changelog :cl: fix: Fixed bitrunning psyker /:cl: --- code/datums/components/echolocation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/echolocation.dm b/code/datums/components/echolocation.dm index 915b99843ce..a40c1430629 100644 --- a/code/datums/components/echolocation.dm +++ b/code/datums/components/echolocation.dm @@ -127,7 +127,7 @@ /datum/component/echolocation/proc/show_image(image/input_appearance, atom/input, current_time) var/image/final_image = image(input_appearance) - //final_image.layer += FOV_EFFECT_LAYER + final_image.layer += EFFECTS_LAYER final_image.plane = FULLSCREEN_PLANE final_image.loc = images_are_static ? get_turf(input) : input final_image.dir = input.dir