From 2d32f3d2e38be227ace10d12147932eb76e4da92 Mon Sep 17 00:00:00 2001 From: Toastgoats <63932673+Toastgoats@users.noreply.github.com> Date: Sun, 7 Nov 2021 10:09:39 -0500 Subject: [PATCH] Suicicide -> Suicide (#62614) This PR just fixes a small spelling error in the suicide message for the singulo toy, probably a waste of a pr but hey, I'm trying to remember how to do these and figured I'd do a quick and easy one. --- code/game/objects/items/toys.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index bd8d3c9ebb1..a95cb5024c3 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -198,7 +198,7 @@ if(!myhead) user.visible_message(span_suicide("[user] tries consuming [src]... but [user.p_they()] [user.p_have()] no mouth!")) // and i must scream return SHAME - user.visible_message(span_suicide("[user] consumes [src]! It looks like [user.p_theyre()] trying to commit suicicide!")) + user.visible_message(span_suicide("[user] consumes [src]! It looks like [user.p_theyre()] trying to commit suicide!")) playsound(user, 'sound/items/eatfood.ogg', 50, TRUE) user.adjust_nutrition(50) // mmmm delicious addtimer(CALLBACK(src, .proc/manual_suicide, user), (3SECONDS))