diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index 2d06f3a215..0cde23de7f 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -348,6 +348,12 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 extended_force = 15 extended_throwforce = 18 extended_icon_state = "switchblade_ext_ms" + +/obj/item/switchblade/makeshift/attackby(/obj/item/I) //Theres no way in hell I did this proc right. Special thanks to Hatterhat and Putnam. They pretty much made this proc for me because im a fucking dentskull haha. + if(I && istype(/obj/item/stack/material/silver)) + icon_state = switchblade_msf + extended_icon_state = switchblade_ext_msf + icon_state = switchblade_msf /obj/item/phone name = "red phone" diff --git a/icons/mob/inhands/weapons/swords_lefthand.dmi b/icons/mob/inhands/weapons/swords_lefthand.dmi index de8d68bdd6..b74fa16e6a 100644 Binary files a/icons/mob/inhands/weapons/swords_lefthand.dmi and b/icons/mob/inhands/weapons/swords_lefthand.dmi differ diff --git a/icons/mob/inhands/weapons/swords_righthand.dmi b/icons/mob/inhands/weapons/swords_righthand.dmi index 397a60853b..8c60c52e76 100644 Binary files a/icons/mob/inhands/weapons/swords_righthand.dmi and b/icons/mob/inhands/weapons/swords_righthand.dmi differ diff --git a/icons/obj/items_and_weapons.dmi b/icons/obj/items_and_weapons.dmi index 57560ab15f..561b1890e8 100644 Binary files a/icons/obj/items_and_weapons.dmi and b/icons/obj/items_and_weapons.dmi differ