Speed in nograv works correctly now

Dismemberment support added as well as a way to use the limbs of another species for dismemberment for visually identical species
Flying var changed to species flag
This commit is contained in:
Shadowlight213
2016-05-08 16:39:54 -07:00
parent afb7a878d1
commit 9573fdec0e
11 changed files with 75 additions and 82 deletions
+1 -1
View File
@@ -174,7 +174,7 @@
should_draw_greyscale = FALSE
var/datum/species/S = H.dna.species
species_id = S.id
species_id = S.limbs_id
if(S.use_skintones)
skin_tone = H.skin_tone
@@ -51,6 +51,13 @@
/mob/proc/get_num_legs()
return 2
/mob/proc/get_leg_ignore()
return 0
/mob/living/carbon/human/get_leg_ignore()
if(FLYING in dna.species.specflags)
return 1
/mob/living/carbon/human/get_num_arms()
. = 0
for(var/X in bodyparts)