From 6fbe083e1325ec5e31770b686873e715f10e5b11 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 11 Jul 2020 07:03:41 -0700 Subject: [PATCH] ok --- code/modules/clothing/shoes/_shoes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/shoes/_shoes.dm b/code/modules/clothing/shoes/_shoes.dm index 0b66c1f4b6..8de65b3a06 100644 --- a/code/modules/clothing/shoes/_shoes.dm +++ b/code/modules/clothing/shoes/_shoes.dm @@ -102,7 +102,7 @@ worn_y_dimension = world.icon_size /obj/item/clothing/shoes/dropped(mob/user) - if(our_alert && our_alert.mob_viewer == user) + if(our_alert && (our_alert.mob_viewer == user)) user.clear_alert("shoealert") if(offset && equipped_before_drop) restore_offsets(user) @@ -287,4 +287,4 @@ if(do_after(user, lace_time, needhand=TRUE, target=src,extra_checks=CALLBACK(src, .proc/still_shoed, user))) to_chat(user, "You [tied ? "untie" : "tie"] the laces on [src].") - adjust_laces(tied ? SHOES_TIED : SHOES_UNTIED, user) \ No newline at end of file + adjust_laces(tied ? SHOES_TIED : SHOES_UNTIED, user)