Fixed 'in' precedence errors.

This commit is contained in:
Melichior
2015-12-29 17:16:09 -07:00
parent c0c36df209
commit 53db2cbcd1
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
/datum/surgery_step/handle_cavity/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)
if(tool)
if(IC || tool.w_class > 3 || NODROP in tool.flags || istype(tool, /obj/item/organ))
if(IC || tool.w_class > 3 || (NODROP in tool.flags) || istype(tool, /obj/item/organ))
user << "<span class='warning'>You can't seem to fit [tool] in [target]'s [target_zone]!</span>"
return 0
else