From e7e4a277b171f5d968e68250589e0aa675a0d5ef Mon Sep 17 00:00:00 2001 From: Tayyyyyyy Date: Sun, 25 Nov 2018 03:23:18 +0000 Subject: [PATCH] Apply suggestions from code review p.them suggestions Co-Authored-By: Kyep <16434066+Kyep@users.noreply.github.com> --- code/datums/spells/chaplain.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/spells/chaplain.dm b/code/datums/spells/chaplain.dm index 1793f8cf321..9c8d1436191 100644 --- a/code/datums/spells/chaplain.dm +++ b/code/datums/spells/chaplain.dm @@ -63,12 +63,12 @@ return if(target.mind.isblessed) - to_chat(user, "[target] already has the aura of one who is blessed. Blessing them again would be pointless.") + to_chat(user, "[target] already has the aura of one who is blessed. Blessing [target.p_them()] again would be pointless.") revert_cast() return spawn(0) // allows cast to complete even if recipient ignores the prompt - if(alert(target, "[user] wants to bless you, in the name of their religion. Accept?","Accept Blessing?","Yes","No") == "Yes") // prevents forced conversions + if(alert(target, "[user] wants to bless you, in the name of [user.p_their()] religion. Accept?", "Accept Blessing?", "Yes", "No") == "Yes") // prevents forced conversions user.visible_message("[user] starts blessing [target] in the name of [ticker.Bible_deity_name].", "You start blessing [target] in the name of [ticker.Bible_deity_name].") if(do_after(user, 150, target = target)) user.visible_message("[user] has blessed [target] in the name of [ticker.Bible_deity_name].", "You have blessed [target] in the name of [ticker.Bible_deity_name].")