From 06271dfcff8597dd42da3d53fcfb1b0bd61bbb73 Mon Sep 17 00:00:00 2001 From: Ghommie Date: Wed, 31 Jul 2019 03:12:09 +0200 Subject: [PATCH] aching special case. --- modular_citadel/code/game/objects/items/stunsword.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/game/objects/items/stunsword.dm b/modular_citadel/code/game/objects/items/stunsword.dm index 2a6b5c7829..7a5398f7d2 100644 --- a/modular_citadel/code/game/objects/items/stunsword.dm +++ b/modular_citadel/code/game/objects/items/stunsword.dm @@ -8,7 +8,9 @@ righthand_file = 'modular_citadel/icons/mob/inhands/stunsword_right.dmi' /obj/item/melee/baton/stunsword/get_belt_overlay() - return mutable_appearance('icons/obj/clothing/belt_overlays.dmi', "stunsword") + if(istype(loc, /obj/item/storage/belt/sabre)) + return mutable_appearance('icons/obj/clothing/belt_overlays.dmi', "stunsword") + return ..() /obj/item/melee/baton/stunsword/get_worn_belt_overlay(icon_file) return mutable_appearance(icon_file, "-stunsword")