From 0b5d199509b3fc2498585f5a625cb890ade2b9fe Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Wed, 20 May 2026 23:58:08 -0400 Subject: [PATCH] You can only reseal sealable biscuits once (#96162) ## About The Pull Request There's two other checks for `has_been_sealed` for the sake of telling people they can't seal it twice but nothing for actually preventing resealing ## Why It's Good For The Game It is extremely clear that you are not supposed to do this ## Changelog :cl: fix: Sealable biscuits can only be sealed once /:cl: --- code/modules/paperwork/paper_biscuit.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/paperwork/paper_biscuit.dm b/code/modules/paperwork/paper_biscuit.dm index cd45586c9e6..75d14f551d2 100644 --- a/code/modules/paperwork/paper_biscuit.dm +++ b/code/modules/paperwork/paper_biscuit.dm @@ -147,6 +147,8 @@ add_fingerprint(user) if(!cracked) return ..() + if(has_been_sealed) + return if(tgui_alert(user, "Do you want to seal it? This can only be done once.", "Biscuit Sealing", list("Yes", "No")) != "Yes") return cracked = FALSE