From 336e7f641727ab94762b8f97e38d2fb5d248f384 Mon Sep 17 00:00:00 2001 From: SimplyLogan <47579821+loganuk@users.noreply.github.com> Date: Tue, 26 Aug 2025 22:40:03 +0100 Subject: [PATCH] Fix to hide pink sprite when wearing trashbags on suitstore slot (#92710) ## About The Pull Request Fixes - https://github.com/tgstation/tgstation/issues/92388 ## Why It's Good For The Game - Pink null sprites are bad - Quick fix --- code/game/objects/items/storage/bags.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index 9f0cb2cbf02..4560172066a 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -29,7 +29,7 @@ icon = 'icons/obj/service/janitor.dmi' icon_state = "trashbag" inhand_icon_state = "trashbag" - worn_icon_state = "trashbag" + worn_icon_state = null lefthand_file = 'icons/mob/inhands/equipment/custodial_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/custodial_righthand.dmi' storage_type = /datum/storage/bag/trash