diff --git a/code/datums/storage/subtypes/boxes.dm b/code/datums/storage/subtypes/boxes.dm index a8acd98884b..2a50119749f 100644 --- a/code/datums/storage/subtypes/boxes.dm +++ b/code/datums/storage/subtypes/boxes.dm @@ -16,6 +16,13 @@ . = ..() set_holdable(/obj/item/food/donkpocket) +/datum/storage/box/donk_bullets/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound) + . = ..() + set_holdable(list( + /obj/item/food/donkpocket, + /obj/item/ammo_casing/shotgun, + )) + ///Coffee box /datum/storage/box/coffee max_slots = 5 diff --git a/code/game/objects/items/storage/boxes/food_boxes.dm b/code/game/objects/items/storage/boxes/food_boxes.dm index 016d7c9ec7d..4a33f6ac7e7 100644 --- a/code/game/objects/items/storage/boxes/food_boxes.dm +++ b/code/game/objects/items/storage/boxes/food_boxes.dm @@ -48,6 +48,7 @@ desc = "Instructions: DO NOT heat in microwave. Product will remove all hostile threats with cutting edge Donk Co. technology." icon_state = "donkpocketboxshell" donktype = /obj/item/ammo_casing/shotgun/flechette/donk + storage_type = /datum/storage/box/donk_bullets /obj/item/storage/box/papersack name = "paper sack"