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 == "")