From b95c437b0f682c586debf688261e0cfc975e13f8 Mon Sep 17 00:00:00 2001 From: Furlucis Date: Sat, 8 Mar 2014 23:15:53 -0500 Subject: [PATCH] Removes an unnecessary check The things you can attach to suits should already be determined by the allowed list, no need to restrict it based off of size if it's in the allowed items. --- code/game/objects/items.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 42e2109128..d0afa8a576 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -379,10 +379,6 @@ if(!disable_warning) usr << "You somehow have a suit with no defined allowed items for suit storage, stop that." return 0 - if(src.w_class > 3) - if(!disable_warning) - usr << "The [name] is too big to attach." - return 0 if( istype(src, /obj/item/device/pda) || istype(src, /obj/item/weapon/pen) || is_type_in_list(src, H.wear_suit.allowed) ) return 1 return 0