From fc823c225bcf9ecbcd756260b197da60b57c0d0f Mon Sep 17 00:00:00 2001 From: norsvenska <73006946+norsvenska@users.noreply.github.com> Date: Sun, 1 Dec 2024 10:33:43 +0100 Subject: [PATCH] Corrects two typos in paper.dm (#88196) --- code/modules/paperwork/paper.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 525cb8aac23..4ef8ee396f7 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -634,7 +634,7 @@ var/stamp_icon_state = stamp_info["stamp_icon_state"] if (LAZYLEN(raw_stamp_data) >= MAX_PAPER_STAMPS) - to_chat(usr, pick("You try to stamp but you miss!", "There is no where else you can stamp!")) + to_chat(usr, pick("You try to stamp but you miss!", "There is nowhere else you can stamp!")) return TRUE add_stamp(stamp_class, stamp_x, stamp_y, stamp_rotation, stamp_icon_state) @@ -649,7 +649,7 @@ var/this_input_length = length_char(paper_input) if(this_input_length == 0) - to_chat(user, pick("Writing block strikes again!", "You forgot to write anthing!")) + to_chat(user, pick("Writing block strikes again!", "You forgot to write anything!")) return TRUE // If the paper is on an unwritable noticeboard, this usually shouldn't be possible.