diff --git a/code/game/objects/items/storage/secure.dm b/code/game/objects/items/storage/secure.dm index 2e91c68050b..1f21436bc45 100644 --- a/code/game/objects/items/storage/secure.dm +++ b/code/game/objects/items/storage/secure.dm @@ -54,7 +54,7 @@ else l_hacking = 0 else - to_chat(user, "You must unscrew the service panel before you can pulse the wiring.") + to_chat(user, "You must unscrew the service panel before you can pulse the wiring!") return //At this point you have exhausted all the special things to do when locked // ... but it's still locked. diff --git a/code/modules/antagonists/_common/antag_spawner.dm b/code/modules/antagonists/_common/antag_spawner.dm index c9b23f9be8c..954968365fb 100644 --- a/code/modules/antagonists/_common/antag_spawner.dm +++ b/code/modules/antagonists/_common/antag_spawner.dm @@ -237,7 +237,7 @@ /obj/item/antag_spawner/slaughter_demon/attack_self(mob/user) if(!is_station_level(user.z)) - to_chat(user, "You should probably wait until you reach the station.") + to_chat(user, "You should probably wait until you reach the station.") return if(used) return @@ -253,7 +253,7 @@ playsound(user.loc, 'sound/effects/glassbr1.ogg', 100, 1) qdel(src) else - to_chat(user, "You can't seem to work up the nerve to shatter the bottle. Perhaps you should try again later.") + to_chat(user, "You can't seem to work up the nerve to shatter the bottle! Perhaps you should try again later.") /obj/item/antag_spawner/slaughter_demon/spawn_antag(client/C, turf/T, kind = "", datum/mind/user) diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 88f5805d70f..d2aef786a27 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -93,7 +93,7 @@ to_chat(user, "You slip a candy corn from your hat.") candy_cooldown = world.time+1200 else - to_chat(user, "You just took a candy corn! You should wait a couple minutes, lest you burn through your stash.") + to_chat(user, "You just took a candy corn! You should wait a couple minutes, lest you burn through your stash.") //Mime diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index b4012081f0d..83d519ed616 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -101,7 +101,7 @@ if(!isliving(user)) return if(user.get_active_held_item() != src) - to_chat(user, "You must hold the [src] in your hand to do this.") + to_chat(user, "You must hold the [src] in your hand to do this!") return if (!enabled_waddle) to_chat(user, "You switch off the waddle dampeners!") diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 7c778b4a485..3d7c9720fc8 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -168,7 +168,7 @@ if(!user.pulling || user.pulling != src || user.grab_state != old_grab_state) return 0 if(user.a_intent != INTENT_GRAB) - to_chat(user, "You must be on grab intent to upgrade your grab further!") + to_chat(user, "You must be on grab intent to upgrade your grab further!") return 0 user.grab_state++ switch(user.grab_state) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 2f8c630ecd5..728a464c602 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -441,7 +441,7 @@ else if(W.tool_behaviour == TOOL_SCREWDRIVER && opened && cell) // radio if(shell) - to_chat(user, "You cannot seem to open the radio compartment") //Prevent AI radio key theft + to_chat(user, "You cannot seem to open the radio compartment!") //Prevent AI radio key theft else if(radio) radio.attackby(W,user)//Push it to the radio to let it handle everything else @@ -450,7 +450,7 @@ else if(W.tool_behaviour == TOOL_WRENCH && opened && !cell) //Deconstruction. The flashes break from the fall, to prevent this from being a ghetto reset module. if(!lockcharge) - to_chat(user, "[src]'s bolts spark! Maybe you should lock them down first!") + to_chat(user, "[src]'s bolts spark! Maybe you should lock them down first!") spark_system.start() return else diff --git a/code/modules/paperwork/paperplane.dm b/code/modules/paperwork/paperplane.dm index 69f611980cc..f8bade6a1e6 100644 --- a/code/modules/paperwork/paperplane.dm +++ b/code/modules/paperwork/paperplane.dm @@ -75,7 +75,7 @@ /obj/item/paperplane/attackby(obj/item/P, mob/living/carbon/human/user, params) ..() if(istype(P, /obj/item/pen) || istype(P, /obj/item/toy/crayon)) - to_chat(user, "You should unfold [src] before changing it.") + to_chat(user, "You should unfold [src] before changing it!") return else if(istype(P, /obj/item/stamp)) //we don't randomize stamps on a paperplane diff --git a/code/modules/spells/spell_types/mime.dm b/code/modules/spells/spell_types/mime.dm index 1791b23ea13..099e3a60608 100644 --- a/code/modules/spells/spell_types/mime.dm +++ b/code/modules/spells/spell_types/mime.dm @@ -20,7 +20,7 @@ /obj/effect/proc_holder/spell/aoe_turf/conjure/mime_wall/Click() if(usr && usr.mind) if(!usr.mind.miming) - to_chat(usr, "You must dedicate yourself to silence first.") + to_chat(usr, "You must dedicate yourself to silence first!") return invocation = "[usr.real_name] looks as if a wall is in front of [usr.p_them()]." else @@ -49,7 +49,7 @@ /obj/effect/proc_holder/spell/aoe_turf/conjure/mime_chair/Click() if(usr && usr.mind) if(!usr.mind.miming) - to_chat(usr, "You must dedicate yourself to silence first.") + to_chat(usr, "You must dedicate yourself to silence first!") return invocation = "[usr.real_name] pulls out an invisible chair and sits down." else @@ -94,7 +94,7 @@ /obj/effect/proc_holder/spell/aoe_turf/conjure/mime_box/Click() if(usr && usr.mind) if(!usr.mind.miming) - to_chat(usr, "You must dedicate yourself to silence first.") + to_chat(usr, "You must dedicate yourself to silence first!") return invocation = "[usr.real_name] moves [usr.p_their()] hands in the shape of a cube, pressing a box out of the air." else @@ -162,7 +162,7 @@ /obj/effect/proc_holder/spell/targeted/forcewall/mime/Click() if(usr && usr.mind) if(!usr.mind.miming) - to_chat(usr, "You must dedicate yourself to silence first.") + to_chat(usr, "You must dedicate yourself to silence first!") return invocation = "[usr.real_name] looks as if a blockade is in front of [usr.p_them()]." else @@ -199,7 +199,7 @@ return if(usr && usr.mind) if(!usr.mind.miming) - to_chat(usr, "You must dedicate yourself to silence first.") + to_chat(usr, "You must dedicate yourself to silence first!") return invocation = "[usr.real_name] fires [usr.p_their()] finger gun!" else diff --git a/code/modules/vehicles/ridden.dm b/code/modules/vehicles/ridden.dm index 0bd7d19e01e..18ae6b59166 100644 --- a/code/modules/vehicles/ridden.dm +++ b/code/modules/vehicles/ridden.dm @@ -43,14 +43,14 @@ inserted_key.forceMove(drop_location()) inserted_key = I else - to_chat(user, "[I] seems to be stuck to your hand!") + to_chat(user, "[I] seems to be stuck to your hand!") return return ..() /obj/vehicle/ridden/AltClick(mob/user) if(inserted_key && user.canUseTopic(src, BE_CLOSE, ismonkey(user))) if(!is_occupant(user)) - to_chat(user, "You must be riding the [src] to remove [src]'s key!") + to_chat(user, "You must be riding the [src] to remove [src]'s key!") return to_chat(user, "You remove \the [inserted_key] from \the [src].") inserted_key.forceMove(drop_location()) diff --git a/code/modules/vehicles/sealed.dm b/code/modules/vehicles/sealed.dm index 53865b9a229..e2d69fed344 100644 --- a/code/modules/vehicles/sealed.dm +++ b/code/modules/vehicles/sealed.dm @@ -73,7 +73,7 @@ inserted_key.forceMove(drop_location()) inserted_key = I else - to_chat(user, "[I] seems to be stuck to your hand!") + to_chat(user, "[I] seems to be stuck to your hand!") return return ..() @@ -82,7 +82,7 @@ to_chat(user, "There is no key in [src]!") return if(!is_occupant(user) || !(occupants[user] & VEHICLE_CONTROL_DRIVE)) - to_chat(user, "You must be driving [src] to remove [src]'s key!") + to_chat(user, "You must be driving [src] to remove [src]'s key!") return to_chat(user, "You remove [inserted_key] from [src].") inserted_key.forceMove(drop_location()) diff --git a/code/modules/vending/_vending.dm b/code/modules/vending/_vending.dm index 68f4ebeaf49..9f86920df43 100644 --- a/code/modules/vending/_vending.dm +++ b/code/modules/vending/_vending.dm @@ -262,21 +262,21 @@ GLOBAL_LIST_EMPTY(vending_products) return if(refill_canister && istype(I, refill_canister)) if (!panel_open) - to_chat(user, "You should probably unscrew the service panel first.") + to_chat(user, "You should probably unscrew the service panel first!") else if (stat & (BROKEN|NOPOWER)) to_chat(user, "[src] does not respond.") else //if the panel is open we attempt to refill the machine var/obj/item/vending_refill/canister = I if(canister.get_part_rating() == 0) - to_chat(user, "[canister] is empty!") + to_chat(user, "[canister] is empty!") else // instantiate canister if needed var/transferred = restock(canister) if(transferred) to_chat(user, "You loaded [transferred] items in [src].") else - to_chat(user, "There's nothing to restock!") + to_chat(user, "There's nothing to restock!") return if(compartmentLoadAccessCheck(user)) if(canLoadItem(I)) @@ -297,7 +297,7 @@ GLOBAL_LIST_EMPTY(vending_products) else denied_items++ if(denied_items) - to_chat(user, "[src] refuses some items.") + to_chat(user, "[src] refuses some items!") if(loaded) to_chat(user, "You insert [loaded] dishes into [src]'s chef compartment.") updateUsrDialog() @@ -460,7 +460,7 @@ GLOBAL_LIST_EMPTY(vending_products) if((href_list["vend"]) && (vend_ready)) if(panel_open) - to_chat(usr, "The vending machine cannot dispense products while its service panel is open!") + to_chat(usr, "The vending machine cannot dispense products while its service panel is open!") return vend_ready = 0 //One thing at a time!!