mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 12:04:48 +01:00
Fixes nettle pickup (#12371)
This commit is contained in:
committed by
variableundefined
parent
fa58a16ce0
commit
7c2abe9cdf
@@ -50,12 +50,12 @@
|
||||
/obj/item/grown/nettle/pickup(mob/living/user)
|
||||
..()
|
||||
if(!ishuman(user))
|
||||
return FALSE
|
||||
return TRUE
|
||||
var/mob/living/carbon/human/H = user
|
||||
if(H.gloves)
|
||||
return FALSE
|
||||
return TRUE
|
||||
if(PIERCEIMMUNE in H.dna.species.species_traits)
|
||||
return FALSE
|
||||
return TRUE
|
||||
var/organ = ((H.hand ? "l_":"r_") + "arm")
|
||||
var/obj/item/organ/external/affecting = H.get_organ(organ)
|
||||
if(affecting)
|
||||
|
||||
Reference in New Issue
Block a user