mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
Invert's a check that I accidentally edited
Full type path for a list variable
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user