From 90d60c682fec0965e2e90cc1ffd17ece7c8a8581 Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 21 Jun 2026 10:30:09 -0500 Subject: [PATCH] Fix pirate boots not having storage (#96592) ## About The Pull Request - Fixes #96586 Pirate boots lacked internal storage and could not hold small items like knifes. ## Why It's Good For The Game This should behave like other boots where you can store items. ## Changelog :cl: fix: Fix pirate boots not having storage /:cl: --- code/modules/clothing/shoes/boots.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm index 492a9800572..6140ee8b80f 100644 --- a/code/modules/clothing/shoes/boots.dm +++ b/code/modules/clothing/shoes/boots.dm @@ -192,6 +192,7 @@ /obj/item/clothing/shoes/pirate/Initialize(mapload) . = ..() + create_storage(storage_type = /datum/storage/pockets/shoes) AddElement(/datum/element/adjust_fishing_difficulty, -4) /obj/item/clothing/shoes/pirate/armored