diff --git a/code/game/objects/items/weapons/implants/implants/explosive.dm b/code/game/objects/items/weapons/implants/implants/explosive.dm index 9ee36016e08..147707e27aa 100644 --- a/code/game/objects/items/weapons/implants/implants/explosive.dm +++ b/code/game/objects/items/weapons/implants/implants/explosive.dm @@ -123,7 +123,6 @@ return if(findtext(sanitizePhrase(msg),phrase)) activate() - qdel(src) /obj/item/implant/explosive/exposed() if(warning_message) @@ -187,7 +186,7 @@ SPAN_DANGER("Your [part.name] bursts open with a horrible ripping noise!"), SPAN_WARNING("You hear a horrible ripping noise.")) else - part.droplimb(0,DROPLIMB_BLUNT) + part.droplimb(0,DROPLIMB_EDGE) playsound(get_turf(imp_in), BP_IS_ROBOTIC(part) ? 'sound/effects/meteorimpact.ogg' : 'sound/effects/splat.ogg', 70) else if(ismob(imp_in)) var/mob/M = imp_in diff --git a/html/changelogs/alaunuslux-fix-limb-targeted-explosive-implant.yml b/html/changelogs/alaunuslux-fix-limb-targeted-explosive-implant.yml new file mode 100644 index 00000000000..4c8d76064cf --- /dev/null +++ b/html/changelogs/alaunuslux-fix-limb-targeted-explosive-implant.yml @@ -0,0 +1,12 @@ +author: AlaunusLux + +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Explosive Implants targeting the Localized Limb no longer fail to remove the limb." + - bugfix: "Exploded limbs will now bleed and cause pain."