Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions code/modules/paperwork/rogue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,14 @@

/obj/item/paper/inqslip/confession/attemptsign(mob/user, mob/living/carbon/human/M)
// Check if they've confessed via torture
to_chat(M, span_say ("You hold the confession paper up to [user]'s bleeding wound."))

var/forced_signing = HAS_TRAIT(user, TRAIT_HAS_CONFESSED)

if(user.stat == DEAD)
to_chat(M, span_warning("This one has little to confess, other than being dead."))
return

if(paired)
if(paired.subject != user)
to_chat(M, span_warning("Why am I trying to make them sign this with the wrong [paired] paired with it?"))
Expand Down
Loading