From d254d0269d1a8d4f22bece8fb8a5af8b7cad262e Mon Sep 17 00:00:00 2001 From: nevimer <77420409+nevimer@users.noreply.github.com> Date: Fri, 4 Jul 2025 16:05:32 -0400 Subject: [PATCH] Fix Fakespace Tiles (#4153) ## About The Pull Request fakespace icons get restored ## Why It's Good For The Game consistency ## Proof Of Testing
Screenshots/Videos
## Changelog :cl: fix: fakespace should use the restored space icons /:cl: --- .../code/modules/space_background/turf_space.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/modular_zubbers/code/modules/space_background/turf_space.dm b/modular_zubbers/code/modules/space_background/turf_space.dm index 603cc54f912..e018cfd3e8f 100644 --- a/modular_zubbers/code/modules/space_background/turf_space.dm +++ b/modular_zubbers/code/modules/space_background/turf_space.dm @@ -13,11 +13,19 @@ icon_state = SPACE_TEXT . = ..() -/turf/open/space/ +/turf/open/space icon = 'modular_zubbers/icons/space/space.dmi' /turf/open/space/Initialize(mapload) . = ..() icon_state = SPACE_TEXT +/turf/open/floor/fakespace + icon_state = "0" + icon = 'modular_zubbers/icons/space/space.dmi' + +/turf/open/floor/fakespace/Initialize(mapload) + . = ..() + icon_state = SPACE_TEXT + #undef SPACE_TEXT