From 002f29cf393d5b47fd4e3fbb1f38b2e3d00c0ba5 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Thu, 21 May 2026 21:49:21 -0400 Subject: [PATCH] Committing suicide with a soul shard shards you (#96172) ## About The Pull Request Exactly what the title says. ## Why It's Good For The Game Someone tried doing this and was disappointed when it didn't do this. I decided it would be funny if it did. ## Changelog :cl: add: Committing suicide with an empty soul shard seals your soul within it. /:cl: --- code/modules/antagonists/wizard/equipment/soulstone.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/antagonists/wizard/equipment/soulstone.dm b/code/modules/antagonists/wizard/equipment/soulstone.dm index 053b82708c0..fcaafd3920b 100644 --- a/code/modules/antagonists/wizard/equipment/soulstone.dm +++ b/code/modules/antagonists/wizard/equipment/soulstone.dm @@ -203,6 +203,11 @@ log_combat(user, M, "captured [M.name]'s soul", src) capture_soul(M, user) +/obj/item/soulstone/suicide_act(mob/living/user) + . = ..() + user.visible_message(span_suicide("[user] is capturing [user.p_their()] own soul with [src]! It looks like [user.p_theyre()] trying to commit suicide!")) + return capture_soul(user, null, TRUE) ? MANUAL_SUICIDE : BRUTELOSS + ///////////////////Options for using captured souls/////////////////////////////////////// /obj/item/soulstone/attack_self(mob/living/user)