From 37e5e784170a150f099daebbd63398be6d242006 Mon Sep 17 00:00:00 2001 From: Alan Date: Sun, 17 May 2026 14:43:08 -0400 Subject: [PATCH] Migrate stamps to the new attack chain. (#32002) * Migrate stamps to the new attack chain. * Migrate stamper module too. --- code/modules/mod/modules/modules_maint.dm | 2 +- code/modules/paperwork/stamps.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mod/modules/modules_maint.dm b/code/modules/mod/modules/modules_maint.dm index 2a0f135f118..703a1390433 100644 --- a/code/modules/mod/modules/modules_maint.dm +++ b/code/modules/mod/modules/modules_maint.dm @@ -125,7 +125,7 @@ desc = "A high-power stamp, able to switch between accept and deny mode when used." flags = NODROP -/obj/item/stamp/mod/attack_self__legacy__attackchain(mob/user, modifiers) +/obj/item/stamp/mod/activate_self(mob/user) . = ..() if(icon_state == "stamp-ok") icon_state = "stamp-deny" diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index 021faaae371..13fa55a2fe7 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -11,6 +11,7 @@ attack_verb = list("stamped") /// What color will this crayon dye clothes, cables, etc? used for for updateIcon purposes on other objs var/dye_color = DYE_GREEN + new_attack_chain = TRUE /obj/item/stamp/suicide_act(mob/user) user.visible_message(SPAN_SUICIDE("[user] stamps 'VOID' on [user.p_their()] forehead, then promptly falls over, dead."))