Invert's a check that I accidentally edited

Full type path for a list variable
This commit is contained in:
Robson Richards
2013-11-20 18:31:52 +00:00
parent ea7db2239d
commit 44bf98d1fd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@
if(S.target_must_be_fat && !(FAT in M.mutations))
continue
if(S.requires_organic_chest && !M.getlimb(/obj/item/organ/limb/robot/chest)) //This a seperate case to below, see "***" in surgery.dm - RR
if(S.requires_organic_chest && M.getlimb(/obj/item/organ/limb/robot/chest)) //This a seperate case to below, see "***" in surgery.dm - RR
continue
var/mob/living/carbon/human/H = M //So we can use get_organ and not some terriblly long Switch or something worse - RR
+1 -1
View File
@@ -5,7 +5,7 @@
var/accept_any_item = 0 //does the surgery step accept any item? If true, ignores implements. Compatible with require_hand.
var/time = 10 //how long does the step take?
var/new_organ = null //Used for multilocation operations
var/allowed_organs = list() //Allowed organs, see Handle_Multi_Loc below - RR
var/list/allowed_organs = list()//Allowed organs, see Handle_Multi_Loc below - RR
/datum/surgery_step/proc/try_op(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)