From 61fa362ce68e1ae6439d93d2a89a5d3b8ba8fe91 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Fri, 23 Jan 2026 23:49:13 +0100 Subject: [PATCH] Fixes the white label on several boxes (#21728) The white label was on most (not quite all) of the items in the screenshot below. This simply removes it as it should be. image --- code/game/objects/items/weapons/storage/boxes.dm | 2 ++ html/changelogs/BoxLabelFix.yml | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 html/changelogs/BoxLabelFix.yml diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 859505916fa..63dd39c5579 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -271,6 +271,7 @@ desc = "A box with several compact tungsten slugs, aimed for use in gauss carbines." icon_state = "ammobox" item_state = "ammobox" + label = null illustration = null drop_sound = 'sound/items/drop/ammobox.ogg' pickup_sound = 'sound/items/pickup/ammobox.ogg' @@ -582,6 +583,7 @@ name = "unique box" desc = "A unique box. How is it unique? You have no idea." color = COLOR_WHITE + label = null illustration = null chewable = FALSE diff --git a/html/changelogs/BoxLabelFix.yml b/html/changelogs/BoxLabelFix.yml new file mode 100644 index 00000000000..07bbc5a213b --- /dev/null +++ b/html/changelogs/BoxLabelFix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Fixes the white label on several types of boxes that shouldn't have them."