From ecfafa336c4eeb41f7bc88cc7a8ae7ea381caf8b Mon Sep 17 00:00:00 2001 From: Geeves Date: Fri, 31 May 2024 22:15:16 +0200 Subject: [PATCH] Footprint Fixes (#19277) * Fixed footprints having a white footprint attached to it. Fixes https://github.com/Aurorastation/Aurora.3/issues/19148 --- code/game/objects/effects/decals/Cleanable/tracks.dm | 2 +- html/changelogs/geeves-footprint_fixes.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/geeves-footprint_fixes.yml diff --git a/code/game/objects/effects/decals/Cleanable/tracks.dm b/code/game/objects/effects/decals/Cleanable/tracks.dm index 2cca245a53a..e29e6754114 100644 --- a/code/game/objects/effects/decals/Cleanable/tracks.dm +++ b/code/game/objects/effects/decals/Cleanable/tracks.dm @@ -35,7 +35,7 @@ random_icon_states = null var/dirs=0 icon = 'icons/effects/fluidtracks.dmi' - icon_state = "human2" + icon_state = "" // invisible sprite, our icon is built using overlays instead var/coming_state = "blood1" var/going_state = "blood2" diff --git a/html/changelogs/geeves-footprint_fixes.yml b/html/changelogs/geeves-footprint_fixes.yml new file mode 100644 index 00000000000..f1585cfa90e --- /dev/null +++ b/html/changelogs/geeves-footprint_fixes.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Fixed footprints having a white footprint attached to it." \ No newline at end of file