From ab3f7e66fed6901dffd9d7e80f5c439feccbaeab Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sun, 6 Nov 2022 01:32:45 -0300 Subject: [PATCH] Fixes the abyss icons (#15024) * Fixes the abyss icons * Update html/changelogs/alberyk-abyssicon.yml Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --- aurorastation.dme | 2 +- code/game/turfs/simulated/abyss.dm | 4 ++++ html/changelogs/alberyk-abyssicon.yml | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/alberyk-abyssicon.yml diff --git a/aurorastation.dme b/aurorastation.dme index b3b23140638..98ea57e14e0 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -3155,7 +3155,6 @@ #include "maps\aurora\code\aurora_shuttles.dm" #include "maps\aurora\code\aurora_unittest.dm" #include "maps\away\away_sites.dm" -#include "maps\away\generic\crashed_elyran_tanker\crashed_elyran_tanker.dm" #include "maps\away\generic\bigderelict.dm" #include "maps\away\generic\bunker.dm" #include "maps\away\generic\civilian_station.dm" @@ -3170,6 +3169,7 @@ #include "maps\away\generic\tajara_safehouse.dm" #include "maps\away\generic\tajara_safehouse_ghostroles.dm" #include "maps\away\generic\wrecked_nt_ship.dm" +#include "maps\away\generic\crashed_elyran_tanker\crashed_elyran_tanker.dm" #include "maps\away\magshield\magshield.dm" #include "maps\away\magshield\magshield_areas.dm" #include "maps\away\romanovich\first_aurora.dm" diff --git a/code/game/turfs/simulated/abyss.dm b/code/game/turfs/simulated/abyss.dm index 5fa39ab3d9f..f3d21114991 100644 --- a/code/game/turfs/simulated/abyss.dm +++ b/code/game/turfs/simulated/abyss.dm @@ -12,6 +12,10 @@ /obj/effect )) +/turf/simulated/abyss/Initialize() + . = ..() + icon_state = "Fill" + /turf/simulated/abyss/Entered(atom/movable/AM, atom/oldloc) if(is_type_in_typecache(forbidden_types)) return TRUE diff --git a/html/changelogs/alberyk-abyssicon.yml b/html/changelogs/alberyk-abyssicon.yml new file mode 100644 index 00000000000..70f60ba9baa --- /dev/null +++ b/html/changelogs/alberyk-abyssicon.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - bugfix: "Fixed the abyss icon."