diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index c98ee6d582ccc5..0a7d2c0af6e994 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -884,23 +884,6 @@ itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such, in SS13 prying destroyed tiles wouldn't give you anything. heatCapacity: 10000 -- type: tile - id: FloorSteelBurnt - name: tiles-steel-floor - sprite: /Textures/Tiles/steel_burnt.png - variants: 2 - placementVariants: - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible - heatCapacity: 10000 - - # Concrete - type: tile id: FloorConcrete diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index 7edb1ae784c9a6..9627ab21f2d5a3 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -25,17 +25,6 @@ friction: 0.3 heatCapacity: 10000 -- type: tile - id: PlatingBurnt - name: tiles-plating - sprite: /Textures/Tiles/plating_burnt.png - baseTurf: Lattice - isSubfloor: true - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 - - type: tile id: PlatingAsteroid name: tiles-asteroid-plating diff --git a/Resources/Prototypes/Tiles/tile_migrations.yml b/Resources/Prototypes/Tiles/tile_migrations.yml index 7b0b9d5d767208..400e4f95a0fd91 100644 --- a/Resources/Prototypes/Tiles/tile_migrations.yml +++ b/Resources/Prototypes/Tiles/tile_migrations.yml @@ -49,6 +49,8 @@ id: FloorAsteroidCoarseSandDug target: FloorAsteroidSandDug +# 2023-09-09 + - type: tileAlias id: FloorGlassAlt target: FloorGlass @@ -56,3 +58,15 @@ - type: tileAlias id: FloorRGlassAlt target: FloorRGlass + +# 2024-11-15 +# Burnt tiles now exist, but they don't use the tiles system. They're decals. +# There's presently no way to add decals over existing tiles, so this will have to suffice for now. + +- type: tileAlias + id: PlatingBurnt + target: PlatingDamaged + +- type: tileAlias + id: FloorSteelBurnt + target: FloorSteelDamaged \ No newline at end of file diff --git a/Resources/Textures/Tiles/plating_burnt.png b/Resources/Textures/Tiles/plating_burnt.png deleted file mode 100644 index 7c89de081eb632..00000000000000 Binary files a/Resources/Textures/Tiles/plating_burnt.png and /dev/null differ diff --git a/Resources/Textures/Tiles/steel_burnt.png b/Resources/Textures/Tiles/steel_burnt.png deleted file mode 100644 index 646c28591611b3..00000000000000 Binary files a/Resources/Textures/Tiles/steel_burnt.png and /dev/null differ