Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion code/datums/components/storage/storage_grid_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,21 @@
/datum/component/storage/concrete/grid/cup
screen_max_rows = 2
screen_max_columns = 1
max_w_class = WEIGHT_CLASS_TINY
max_w_class = WEIGHT_CLASS_SMALL

/datum/component/storage/concrete/grid/cup/New(datum/P, ...)
. = ..()
//Going off the idea that giving cups storage grids was to smuggle things in them. Limiting what a cup can hold makes cloth work on them.
set_holdable(list(
/obj/item/weapon/knife,
/obj/item/gem,
/obj/item/coin,
/obj/item/paper,
/obj/item/clothing/ring,
/obj/item/reagent_containers/powder,
/obj/item/key,
/obj/item/collar_detonator
))

/datum/component/storage/concrete/grid/bucket
screen_max_rows = 4
Expand Down
Loading