Fixed some broken flags

This commit is contained in:
ZomgPonies
2014-01-29 23:31:22 -05:00
parent 15c0d42abf
commit 3633c2dcb7
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -336,7 +336,7 @@
if(reagents.has_reagent("lexorin")) return
if(M_NO_BREATH in mutations) return // No breath mutation means no breathing.
if(istype(loc, /obj/machinery/atmospherics/unary/cryo_cell)) return
if(species && (species.flags & NO_BREATHE || species.flags & IS_SYNTHETIC)) return
if(species && (species.flags & NO_BREATHE)) return
var/datum/organ/internal/lungs/L = internal_organs["lungs"]
L.process()
@@ -840,7 +840,7 @@ proc/get_damage_icon_part(damage_state, body_part)
/mob/living/carbon/human/proc/update_tail_showing(var/update_icons=1)
overlays_standing[TAIL_LAYER] = null
if(species.tail && species.flags & HAS_TAIL)
if(species.tail && species.bodyflags & HAS_TAIL)
if(!wear_suit || !(wear_suit.flags_inv & HIDEJUMPSUIT) && !istype(wear_suit, /obj/item/clothing/suit/space))
overlays_standing[TAIL_LAYER] = image("icon" = 'icons/effects/species.dmi', "icon_state" = "[species.tail]_s")
+4 -4
View File
@@ -78,8 +78,8 @@
primitive = /mob/living/carbon/monkey/unathi
darksight = 3
flags = HAS_LIPS | HAS_UNDERWEAR | HAS_TAIL
bodyflags = FEET_CLAWS
flags = HAS_LIPS | HAS_UNDERWEAR
bodyflags = FEET_CLAWS | HAS_TAIL
cold_level_1 = 280 //Default 260 - Lower is better
cold_level_2 = 220 //Default 200
@@ -109,8 +109,8 @@
primitive = /mob/living/carbon/monkey/tajara
flags = HAS_LIPS | HAS_UNDERWEAR | HAS_TAIL | CAN_BE_FAT
bodyflags = FEET_PADDED
flags = HAS_LIPS | HAS_UNDERWEAR | CAN_BE_FAT
bodyflags = FEET_PADDED | HAS_TAIL
/datum/species/skrell
name = "Skrell"