more save points
This commit is contained in:
@@ -217,11 +217,7 @@
|
||||
C = owner
|
||||
no_update = 0
|
||||
|
||||
<<<<<<< HEAD
|
||||
if(C.disabilities & HUSK)
|
||||
=======
|
||||
if(C.has_disability(DISABILITY_HUSK))
|
||||
>>>>>>> bc20a75... Merge pull request #33783 from Cruix/fix_blind
|
||||
species_id = "husk" //overrides species_id
|
||||
dmg_overlay_type = "" //no damage overlay shown when husked
|
||||
should_draw_gender = FALSE
|
||||
|
||||
@@ -61,11 +61,7 @@
|
||||
C = owner
|
||||
|
||||
real_name = C.real_name
|
||||
<<<<<<< HEAD
|
||||
if(C.disabilities & HUSK)
|
||||
=======
|
||||
if(C.has_disability(DISABILITY_HUSK))
|
||||
>>>>>>> bc20a75... Merge pull request #33783 from Cruix/fix_blind
|
||||
real_name = "Unknown"
|
||||
hair_style = "Bald"
|
||||
facial_hair_style = "Shaved"
|
||||
|
||||
@@ -4,11 +4,7 @@
|
||||
possible_locs = list("chest")
|
||||
|
||||
/datum/surgery/lipoplasty/can_start(mob/user, mob/living/carbon/target)
|
||||
<<<<<<< HEAD
|
||||
if(target.disabilities & FAT)
|
||||
=======
|
||||
if(target.has_disability(DISABILITY_FAT))
|
||||
>>>>>>> bc20a75... Merge pull request #33783 from Cruix/fix_blind
|
||||
return 1
|
||||
return 0
|
||||
|
||||
|
||||
@@ -25,11 +25,7 @@
|
||||
return
|
||||
var/mob/living/carbon/C = owner
|
||||
// genetic deafness prevents the body from using the ears, even if healthy
|
||||
<<<<<<< HEAD
|
||||
if(C.disabilities & DEAF)
|
||||
=======
|
||||
if(C.has_disability(DISABILITY_DEAF))
|
||||
>>>>>>> bc20a75... Merge pull request #33783 from Cruix/fix_blind
|
||||
deaf = max(deaf, 1)
|
||||
else
|
||||
if(C.ears && (C.ears.flags_2 & HEALS_EARS_2))
|
||||
@@ -46,11 +42,7 @@
|
||||
|
||||
var/mob/living/carbon/C = owner
|
||||
|
||||
<<<<<<< HEAD
|
||||
if(iscarbon(owner) && C.disabilities & DEAF)
|
||||
=======
|
||||
if(iscarbon(owner) && C.has_disability(DISABILITY_DEAF))
|
||||
>>>>>>> bc20a75... Merge pull request #33783 from Cruix/fix_blind
|
||||
deaf = 1
|
||||
|
||||
/obj/item/organ/ears/proc/adjustEarDamage(ddmg, ddeaf)
|
||||
|
||||
Reference in New Issue
Block a user