diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index fef692a574d..e49a676a8be 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -639,7 +639,7 @@ var/global/list/light_overlay_cache = list() //see get_worn_overlay() on helmets usr.visible_message("\The [usr] pulls a knife out of their boot!") playsound(src, 'sound/weapons/holster/sheathout.ogg', 25) holding = null - cut_overlay(image(icon, "[icon_state]_knife")) + cut_overlay(image(icon, "boot_knife")) else to_chat(usr, "Your need an empty, unbroken hand to do that.") holding.forceMove(src) @@ -686,7 +686,7 @@ var/global/list/light_overlay_cache = list() //see get_worn_overlay() on helmets /obj/item/clothing/shoes/update_icon() . = ..() if(holding) - add_overlay(image(icon, "[icon_state]_knife")) + add_overlay(image(icon, "boot_knife")) if(ismob(usr)) var/mob/M = usr M.update_inv_shoes() diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 38b057c8c20..30e1e0da4c9 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ