diff --git a/code/game/objects/items/devices/floor_painter.dm b/code/game/objects/items/devices/floor_painter.dm index be945223bb2..407a148ef94 100644 --- a/code/game/objects/items/devices/floor_painter.dm +++ b/code/game/objects/items/devices/floor_painter.dm @@ -10,6 +10,7 @@ var/list/decals = list( "quarter-turf" = list("path" = /obj/effect/floor_decal/corner, "precise" = 1, "coloured" = 1), + "full quarter-turf" = list("path" = /obj/effect/floor_decal/corner_full, "precise" = 1, "coloured" = 1), "hazard stripes" = list("path" = /obj/effect/floor_decal/industrial/warning), "corner, hazard" = list("path" = /obj/effect/floor_decal/industrial/warning/corner), "hatched marking" = list("path" = /obj/effect/floor_decal/industrial/hatch, "coloured" = 1), diff --git a/code/game/turfs/flooring/flooring_decals.dm b/code/game/turfs/flooring/flooring_decals.dm index 22ebf9cb461..6e2834e119c 100644 --- a/code/game/turfs/flooring/flooring_decals.dm +++ b/code/game/turfs/flooring/flooring_decals.dm @@ -367,6 +367,9 @@ /obj/effect/floor_decal/corner_wide/grey/full icon_state = "wide_corner_full" +/obj/effect/floor_decal/corner_full + name = "full corner" + icon_state = "full_corner" /obj/effect/floor_decal/spline/plain name = "spline - plain" diff --git a/html/changelogs/FullQuarter.yml b/html/changelogs/FullQuarter.yml new file mode 100644 index 00000000000..9426681566b --- /dev/null +++ b/html/changelogs/FullQuarter.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added a fuller variant of the quarter-turf decal to the floor painter called 'full quarter-turf'." diff --git a/icons/turf/flooring/decals.dmi b/icons/turf/flooring/decals.dmi index 8806a510718..ae2f50ebd22 100644 Binary files a/icons/turf/flooring/decals.dmi and b/icons/turf/flooring/decals.dmi differ