From b1f0fc4560b85e65e0f8c6f7df75256d0f086af4 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 30 Aug 2015 15:32:51 -0700 Subject: [PATCH] Remove arbitrary w_class restriction for xenos --- code/game/objects/items.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 842fa1edb45..f26026b0754 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -170,7 +170,7 @@ if(isalien(user)) // -- TLE 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." @@ -197,7 +197,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." @@ -705,6 +705,6 @@ if(current_size >= STAGE_FOUR) throw_at(S,14,3) else ..() - + /obj/item/proc/pwr_drain() - return 0 // Process Kill \ No newline at end of file + return 0 // Process Kill \ No newline at end of file