From c443c2e416efd4ca6e362fcae311f7cb8ca27336 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Wed, 26 Mar 2025 11:40:35 +0100 Subject: [PATCH] Fixes all satchels having reduced storage (#90237) ## About The Pull Request #89543 accidentally gave all satchels the storage datum of smuggler satchels Closes #90235 ## Changelog :cl: fix: Fixed all satchels having reduced storage /:cl: --- code/game/objects/items/storage/backpack.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index c140fc5f831..cac63e1a85b 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -298,7 +298,6 @@ desc = "A trendy looking satchel." icon_state = "satchel-norm" inhand_icon_state = "satchel-norm" - storage_type = /datum/storage/backpack/satchel /obj/item/storage/backpack/satchel/leather name = "leather satchel" @@ -385,6 +384,7 @@ icon_state = "satchel-flat" inhand_icon_state = "satchel-flat" w_class = WEIGHT_CLASS_NORMAL //Can fit in backpacks itself. + storage_type = /datum/storage/backpack/satchel /obj/item/storage/backpack/satchel/flat/PopulateContents(datum/storage_config/config) config.contents_are_exceptions = TRUE