From e9ec9cb518cef191b287b87598a7cbe8d550fa18 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Tue, 4 Oct 2022 12:44:25 -0400 Subject: [PATCH] quick sirryan review --- code/modules/mob/living/simple_animal/bot/construction.dm | 4 ++-- code/modules/projectiles/ammunition.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/construction.dm b/code/modules/mob/living/simple_animal/bot/construction.dm index 8ac99ac1be5..64ff74011c7 100644 --- a/code/modules/mob/living/simple_animal/bot/construction.dm +++ b/code/modules/mob/living/simple_animal/bot/construction.dm @@ -500,10 +500,10 @@ //General Griefsky - else if((istype(I, /obj/item/wrench)) && (build_step == 3)) + else if(istype(I, /obj/item/wrench) && build_step == 3) var/obj/item/griefsky_assembly/A = new /obj/item/griefsky_assembly(get_turf(src)) user.put_in_hands(A) - to_chat(user, "You adjust the arm slots for extra weapons!.") + to_chat(user, "You adjust the arm slots for extra weapons!") user.unEquip(src, 1) qdel(src) diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index 466c4e0b470..2b8dde3903e 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -81,10 +81,10 @@ return var/tmp_label = "" - var/label_text = sanitize(input(user, "Inscribe some text into \the [initial(BB.name)]","Inscription",tmp_label)) + var/label_text = sanitize(input(user, "Inscribe some text into \the [initial(BB.name)]", "Inscription", tmp_label)) if(length(label_text) > 20) - to_chat(user, "The inscription can be at most 20 characters long.") + to_chat(user, "The inscription can be at most 20 characters long.") return if(label_text == "")