From bfb8a336db9082b77d9e745d148fb749c6e6ef45 Mon Sep 17 00:00:00 2001 From: Erki Date: Sat, 27 Jan 2018 23:35:29 +0200 Subject: [PATCH] Fixes uphint (#4163) Enforcing strict 1/0 conversion yay. --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 755211286a6..b303542e90b 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -124,7 +124,7 @@ if (client) var/turf/B = GetAbove(T) - up_hint.icon_state = "uphint[(B ? B.is_hole : 0)]" + up_hint.icon_state = "uphint[(B ? !!B.is_hole : 0)]" if (is_noisy && !stat && !lying) if ((x == last_x && y == last_y) || !T.footstep_sound)