From 275be84ea59cfeb88c0f56e3b225709d1b8d41a9 Mon Sep 17 00:00:00 2001 From: datlo Date: Sun, 30 Dec 2018 19:38:54 +0000 Subject: [PATCH] removed capitalised "you" --- code/datums/spell.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/spell.dm b/code/datums/spell.dm index 5b784aa17bb..3c23a0c7f20 100644 --- a/code/datums/spell.dm +++ b/code/datums/spell.dm @@ -145,10 +145,10 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin var/obj/item/clothing/hat = H.head var/obj/item/clothing/shoes = H.shoes if(!robe || !hat || !shoes) - to_chat(user, "Your outfit isn't complete, You should put on your robe and wizard hat, as well as sandals.") + to_chat(user, "Your outfit isn't complete, you should put on your robe and wizard hat, as well as sandals.") return 0 if(!robe.magical || !hat.magical || !shoes.magical) - to_chat(user, "Your outfit isn't magical enough, You should put on your robe and wizard hat, as well as your sandals.") + to_chat(user, "Your outfit isn't magical enough, you should put on your robe and wizard hat, as well as your sandals.") return 0 else if(!ishuman(user)) if(clothes_req || human_req)