From c9a220d4c4fefb1ae2edcb76933df251b440bbd2 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 15 Sep 2024 13:38:06 +0200 Subject: [PATCH] Water turfs are now properly named (#86641) ## About The Pull Request Because water turfs were unnamed on compile-time, they defaulted to the last section of their path. ## Why It's Good For The Game This will fix #86638 ## Changelog :cl: fix: Water turfs from the crashed site ruin on lavaland are no longer named "lavaland atmos". /:cl: --- code/game/turfs/open/water.dm | 1 + code/modules/mapfluff/ruins/icemoonruin_code/hotsprings.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/game/turfs/open/water.dm b/code/game/turfs/open/water.dm index de895754d03..2c4bbf4bfa4 100644 --- a/code/game/turfs/open/water.dm +++ b/code/game/turfs/open/water.dm @@ -1,4 +1,5 @@ /turf/open/water + name = "water" gender = PLURAL desc = "Shallow water." icon = 'icons/turf/floors.dmi' diff --git a/code/modules/mapfluff/ruins/icemoonruin_code/hotsprings.dm b/code/modules/mapfluff/ruins/icemoonruin_code/hotsprings.dm index 7c674e98e24..6952dd0af58 100644 --- a/code/modules/mapfluff/ruins/icemoonruin_code/hotsprings.dm +++ b/code/modules/mapfluff/ruins/icemoonruin_code/hotsprings.dm @@ -11,6 +11,7 @@ */ /turf/open/water/cursed_spring + name = "cursed spring" baseturfs = /turf/open/water/cursed_spring planetary_atmos = TRUE initial_gas_mix = ICEMOON_DEFAULT_ATMOS