From 7267dafba98ef9517a0ad281bf373c40e1836f74 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Sat, 24 Nov 2018 09:17:41 +0100 Subject: [PATCH] Fixes being unable to sign the infernal contract. --- code/modules/paperwork/contract.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/paperwork/contract.dm b/code/modules/paperwork/contract.dm index c2bd15e7a0e..0984c983210 100644 --- a/code/modules/paperwork/contract.dm +++ b/code/modules/paperwork/contract.dm @@ -184,7 +184,7 @@ if(!user.mind.hasSoul) to_chat(user, "You lack a soul to sign away!") - if(user.mind.soulOwner != owner) + if(user.mind.soulOwner == owner) to_chat(user, "This devil already owns your soul, you may not sell it to them again.") return FALSE