From 5d44161043bc7ec57b7622cdd0d6d1d72682dcb8 Mon Sep 17 00:00:00 2001 From: Vivalas Date: Sun, 17 Sep 2017 17:44:26 -0500 Subject: [PATCH] TRUE, FALSE, MAYBE.....? --- code/modules/mob/living/carbon/human/human_movement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 9b465c90eda..fc048ab161a 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -49,9 +49,9 @@ var/turf/T = get_turf(src) var/obj/item/organ/external/l_foot = get_organ("l_foot") var/obj/item/organ/external/r_foot = get_organ("r_foot") - var/hasfeet = 1 + var/hasfeet = TRUE if(!l_foot && !r_foot) - hasfeet = 0 + hasfeet = FALSE if(shoes) if(S.bloody_shoes && S.bloody_shoes[S.blood_state])