Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes max weight on surgery cases #3881

Merged
merged 2 commits into from
Dec 18, 2024
Merged
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
3 changes: 2 additions & 1 deletion code/game/objects/items/storage/cases.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
/obj/item/storage/case/surgery/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
STR.max_w_class = WEIGHT_CLASS_NORMAL
STR.max_w_class = INFINITY //workaround for the differently sized items, case is still limited to 7 items max and to the list.
STR.max_combined_w_class = INFINITY //part of the workaround, not setting a max combined weight defaults to some weird number.
STR.max_items = 7
STR.set_holdable(list(
/obj/item/healthanalyzer,
Expand Down
Loading