mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-17 12:35:26 +00:00
fixes coroner medkit storage (#77912)
## About The Pull Request atom_storage.max_specific_storage and atom_storage.max_total_storage had their values reversed. this fixes that, and i tested to confirm: the compact coroner medkit can now hold everything it spawns with ## Why It's Good For The Game before this fix, the max storage of a coroner medkit was two items. it's very annoying to pull an item from it, only to find it can not go back in again - moreoever, this gives it consistency with other medkits. ## Changelog 🆑 fix: the coroner medkit can now hold every item it spawns with /🆑
This commit is contained in:
@@ -348,9 +348,9 @@
|
||||
|
||||
/obj/item/storage/medkit/coroner/Initialize(mapload)
|
||||
. = ..()
|
||||
atom_storage.max_specific_storage = 24
|
||||
atom_storage.max_specific_storage = WEIGHT_CLASS_NORMAL
|
||||
atom_storage.max_slots = 14
|
||||
atom_storage.max_total_storage = WEIGHT_CLASS_NORMAL
|
||||
atom_storage.max_total_storage = 24
|
||||
atom_storage.set_holdable(list(
|
||||
/obj/item/reagent_containers,
|
||||
/obj/item/bodybag,
|
||||
|
||||
Reference in New Issue
Block a user