From de7724f8d46656f0ad711731f616d609dad50718 Mon Sep 17 00:00:00 2001 From: phil235 Date: Sun, 26 Apr 2015 21:59:12 +0200 Subject: [PATCH] Xenomorphs with has_fine_manipulation (admin var edit only) can now pick up even big items of w_class 4 and 5. --- code/game/objects/items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index dc0c3825375..08475eea94e 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -190,7 +190,7 @@ /obj/item/attack_alien(mob/user as mob) var/mob/living/carbon/alien/A = user - if(!A.has_fine_manipulation || w_class >= 4) + if(!A.has_fine_manipulation) if(src in A.contents) // To stop Aliens having items stuck in their pockets A.unEquip(src) user << "Your claws aren't capable of such fine manipulation!"