Fixes an inverted robot check.

This commit is contained in:
Zuhayr
2016-02-13 17:22:55 +10:30
parent 51842ce8fa
commit 4066326fbb
+1 -1
View File
@@ -342,7 +342,7 @@ var/list/organ_cache = list()
/obj/item/organ/attack_self(mob/user as mob)
// Convert it to an edible form, yum yum.
if((status & ORGAN_ROBOT) && user.a_intent == I_HELP && user.zone_sel.selecting == O_MOUTH)
if(!(status & ORGAN_ROBOT) && user.a_intent == I_HELP && user.zone_sel.selecting == O_MOUTH)
bitten(user)
return