From 0a249df22efbdc7d23d93c1821cf0823325fb180 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Thu, 21 Apr 2016 16:05:55 +0100 Subject: [PATCH] Normalises medical item storage size + fixes Makes all first aid kits the same size, Fixes pill bottles not holding 14 pills, Fixes antag surigcal kit not holding all the items. Adds a max weight class of 1 to pill bottles Properly adjusts antag surgical kit size --- code/game/objects/items/weapons/storage/firstaid.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/storage/firstaid.dm b/code/game/objects/items/weapons/storage/firstaid.dm index 9b9918d92f..4bd5592704 100644 --- a/code/game/objects/items/weapons/storage/firstaid.dm +++ b/code/game/objects/items/weapons/storage/firstaid.dm @@ -14,6 +14,7 @@ throw_speed = 2 throw_range = 8 var/empty = 0 + max_storage_space = 14 /obj/item/weapon/storage/firstaid/fire @@ -131,8 +132,8 @@ /obj/item/weapon/storage/firstaid/surgery name = "surgery kit" desc = "Contains tools for surgery." - storage_slots = 10 - max_storage_space = 23 + max_storage_space = 21 + max_w_class = 3 /obj/item/weapon/storage/firstaid/surgery/New() ..() @@ -163,6 +164,8 @@ allow_quick_gather = 1 use_to_pickup = 1 use_sound = null + max_storage_space = 14 + max_w_class = 1 /obj/item/weapon/storage/pill_bottle/antitox name = "bottle of Dylovene pills"