From fb9731492cdcf96154b2527849470aef60e314db Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Tue, 25 Jun 2019 21:03:25 +0300 Subject: [PATCH] * extra spaces removed from "span class = '" --> "span class='" * warning-spans added to cases of "You need..." --- code/_onclick/hud/hud.dm | 4 +-- code/_onclick/telekinesis.dm | 2 +- code/datums/components/riding.dm | 4 +-- .../storage/concrete/bag_of_holding.dm | 2 +- code/datums/martial/krav_maga.dm | 6 ++--- code/datums/martial/sleeping_carp.dm | 2 +- code/datums/martial/wrestling.dm | 26 +++++++++---------- code/datums/mutations/antenna.dm | 2 +- code/game/machinery/teleporter.dm | 4 +-- code/game/objects/items/cigs_lighters.dm | 16 ++++++------ .../objects/items/devices/laserpointer.dm | 4 +-- code/game/objects/items/devices/paicard.dm | 2 +- code/game/objects/items/devices/scanners.dm | 2 +- code/game/objects/items/melee/misc.dm | 14 +++++----- code/game/objects/items/twohanded.dm | 2 +- code/game/objects/structures/barsigns.dm | 2 +- code/game/objects/structures/fireaxe.dm | 2 +- code/modules/admin/admin.dm | 2 +- .../abductor/equipment/abduction_surgery.dm | 4 +-- .../changeling/powers/tiny_prick.dm | 2 +- code/modules/events/immovable_rod.dm | 2 +- code/modules/flufftext/Hallucination.dm | 2 +- .../kitchen_machinery/deep_fryer.dm | 2 +- code/modules/hydroponics/grown/towercap.dm | 2 +- code/modules/mob/living/brain/brain_item.dm | 2 +- .../carbon/alien/humanoid/caste/hunter.dm | 4 +-- .../carbon/human/species_types/vampire.dm | 10 +++---- .../mob/living/simple_animal/friendly/dog.dm | 2 +- .../mob/living/simple_animal/hostile/bees.dm | 2 +- .../simple_animal/hostile/wumborian_fugu.dm | 6 ++--- code/modules/paperwork/photocopier.dm | 2 +- code/modules/power/singularity/narsie.dm | 4 +-- code/modules/projectiles/gun.dm | 2 +- code/modules/projectiles/guns/ballistic.dm | 2 +- .../guns/ballistic/laser_gatling.dm | 4 +-- code/modules/projectiles/pins.dm | 6 ++--- .../chemistry/machinery/chem_dispenser.dm | 2 +- .../chemistry/reagents/alcohol_reagents.dm | 2 +- .../chemistry/reagents/drink_reagents.dm | 2 +- .../chemistry/reagents/food_reagents.dm | 6 ++--- .../chemistry/reagents/medicine_reagents.dm | 6 ++--- code/modules/spells/spell_types/rod_form.dm | 4 +-- code/modules/surgery/limb_augmentation.dm | 6 ++--- code/modules/surgery/organs/heart.dm | 8 +++--- .../modules/surgery/prosthetic_replacement.dm | 2 +- 45 files changed, 98 insertions(+), 98 deletions(-) diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 1d1836716bc..0a778bc485a 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -253,9 +253,9 @@ GLOBAL_LIST_INIT(available_ui_styles, list( if(hud_used && client) hud_used.show_hud() //Shows the next hud preset - to_chat(usr, "Switched HUD mode. Press F12 to toggle.") + to_chat(usr, "Switched HUD mode. Press F12 to toggle.") else - to_chat(usr, "This mob type does not use a HUD.") + to_chat(usr, "This mob type does not use a HUD.") //(re)builds the hand ui slots, throwing away old ones diff --git a/code/_onclick/telekinesis.dm b/code/_onclick/telekinesis.dm index a802d12af19..2fd29944f6a 100644 --- a/code/_onclick/telekinesis.dm +++ b/code/_onclick/telekinesis.dm @@ -151,7 +151,7 @@ /proc/tkMaxRangeCheck(mob/user, atom/target) var/d = get_dist(user, target) if(d > TK_MAXRANGE) - to_chat(user, "Your mind won't reach that far.") + to_chat(user, "Your mind won't reach that far.") return return TRUE diff --git a/code/datums/components/riding.dm b/code/datums/components/riding.dm index f2686e3d274..a3cd1cca868 100644 --- a/code/datums/components/riding.dm +++ b/code/datums/components/riding.dm @@ -240,7 +240,7 @@ return list(TEXT_NORTH = list(0, 6), TEXT_SOUTH = list(0, 6), TEXT_EAST = list(0, 6), TEXT_WEST = list(0, 6)) else return list(TEXT_NORTH = list(0, 6), TEXT_SOUTH = list(0, 6), TEXT_EAST = list(-6, 4), TEXT_WEST = list( 6, 4)) - + /datum/component/riding/human/force_dismount(mob/living/user) var/atom/movable/AM = parent @@ -267,7 +267,7 @@ var/mob/living/carbon/carbonuser = user if(!carbonuser.get_num_arms()) Unbuckle(user) - to_chat(user, "You can't grab onto [AM] with no hands!") + to_chat(user, "You can't grab onto [AM] with no hands!") return /datum/component/riding/cyborg/handle_vehicle_layer() diff --git a/code/datums/components/storage/concrete/bag_of_holding.dm b/code/datums/components/storage/concrete/bag_of_holding.dm index 40efc02767d..c3ac69f17f4 100644 --- a/code/datums/components/storage/concrete/bag_of_holding.dm +++ b/code/datums/components/storage/concrete/bag_of_holding.dm @@ -14,7 +14,7 @@ user.Paralyze(60) return if(istype(loccheck.loc, /area/fabric_of_reality)) - to_chat(user, "You can't do that here!") + to_chat(user, "You can't do that here!") to_chat(user, "The Bluespace interfaces of the two devices catastrophically malfunction!") qdel(W) playsound(loccheck,'sound/effects/supermatter.ogg', 200, 1) diff --git a/code/datums/martial/krav_maga.dm b/code/datums/martial/krav_maga.dm index 9337edcdd64..ad32a9bdabd 100644 --- a/code/datums/martial/krav_maga.dm +++ b/code/datums/martial/krav_maga.dm @@ -58,14 +58,14 @@ /datum/martial_art/krav_maga/teach(mob/living/carbon/human/H,make_temporary=0) if(..()) - to_chat(H, "You know the arts of [name]!") - to_chat(H, "Place your cursor over a move at the top of the screen to see what it does.") + to_chat(H, "You know the arts of [name]!") + to_chat(H, "Place your cursor over a move at the top of the screen to see what it does.") neckchop.Grant(H) legsweep.Grant(H) lungpunch.Grant(H) /datum/martial_art/krav_maga/on_remove(mob/living/carbon/human/H) - to_chat(H, "You suddenly forget the arts of [name]...") + to_chat(H, "You suddenly forget the arts of [name]...") neckchop.Remove(H) legsweep.Remove(H) lungpunch.Remove(H) diff --git a/code/datums/martial/sleeping_carp.dm b/code/datums/martial/sleeping_carp.dm index 781e59af08d..f5fd7f2f562 100644 --- a/code/datums/martial/sleeping_carp.dm +++ b/code/datums/martial/sleeping_carp.dm @@ -185,7 +185,7 @@ /obj/item/twohanded/bostaff/attack(mob/target, mob/living/user) add_fingerprint(user) if((HAS_TRAIT(user, TRAIT_CLUMSY)) && prob(50)) - to_chat(user, "You club yourself over the head with [src].") + to_chat(user, "You club yourself over the head with [src].") user.Paralyze(60) if(ishuman(user)) var/mob/living/carbon/human/H = user diff --git a/code/datums/martial/wrestling.dm b/code/datums/martial/wrestling.dm index 6c3a93e8b86..e7a901805c4 100644 --- a/code/datums/martial/wrestling.dm +++ b/code/datums/martial/wrestling.dm @@ -103,8 +103,8 @@ /datum/martial_art/wrestling/teach(mob/living/carbon/human/H,make_temporary=0) if(..()) - to_chat(H, "SNAP INTO A THIN TIM!") - to_chat(H, "Place your cursor over a move at the top of the screen to see what it does.") + to_chat(H, "SNAP INTO A THIN TIM!") + to_chat(H, "Place your cursor over a move at the top of the screen to see what it does.") drop.Grant(H) kick.Grant(H) slam.Grant(H) @@ -112,7 +112,7 @@ strike.Grant(H) /datum/martial_art/wrestling/on_remove(mob/living/carbon/human/H) - to_chat(H, "You no longer feel that the tower of power is too sweet to be sour...") + to_chat(H, "You no longer feel that the tower of power is too sweet to be sour...") drop.Remove(H) kick.Remove(H) slam.Remove(H) @@ -129,13 +129,13 @@ if(!D) return if(!A.pulling || A.pulling != D) - to_chat(A, "You need to have [D] in a cinch!") + to_chat(A, "You need to have [D] in a cinch!") return D.forceMove(A.loc) D.setDir(get_dir(D, A)) D.Stun(80) - A.visible_message("[A] starts spinning around with [D]!") + A.visible_message("[A] starts spinning around with [D]!") A.emote("scream") for (var/i = 0, i < 20, i++) @@ -186,7 +186,7 @@ D.forceMove(A.loc) // Maybe this will help with the wallthrowing bug. - A.visible_message("[A] throws [D]!") + A.visible_message("[A] throws [D]!") playsound(A.loc, "swing_hit", 50, 1) var/turf/T = get_edge_target_turf(A, A.dir) if (T && isturf(T)) @@ -214,7 +214,7 @@ A.setDir(get_dir(A, D)) D.setDir(get_dir(D, A)) - A.visible_message("[A] lifts [D] up!") + A.visible_message("[A] lifts [D] up!") FlipAnimation() @@ -284,7 +284,7 @@ if (3) fluff = "atomic [fluff]" - A.visible_message("[A] [fluff] [D]!") + A.visible_message("[A] [fluff] [D]!") playsound(A.loc, "swing_hit", 50, 1) if (!D.stat) D.emote("scream") @@ -327,7 +327,7 @@ A.forceMove(D.loc) addtimer(CALLBACK(src, .proc/CheckStrikeTurf, A, T), 4) - A.visible_message("[A] headbutts [D]!") + A.visible_message("[A] headbutts [D]!") D.adjustBruteLoss(rand(10,20)) playsound(A.loc, "swing_hit", 50, 1) D.Unconscious(20) @@ -340,7 +340,7 @@ A.emote("flip") A.setDir(turn(A.dir, 90)) - A.visible_message("[A] roundhouse-kicks [D]!") + A.visible_message("[A] roundhouse-kicks [D]!") playsound(A.loc, "swing_hit", 50, 1) D.adjustBruteLoss(rand(10,20)) @@ -372,7 +372,7 @@ if (surface && (ST && isturf(ST))) A.forceMove(ST) - A.visible_message("[A] climbs onto [surface]!") + A.visible_message("[A] climbs onto [surface]!") A.pixel_y = 10 falling = 1 sleep(10) @@ -383,7 +383,7 @@ if ((falling == 0 && get_dist(A, D) > 1) || (falling == 1 && get_dist(A, D) > 2)) // We climbed onto stuff. A.pixel_y = 0 if (falling == 1) - A.visible_message("...and dives head-first into the ground, ouch!") + A.visible_message("...and dives head-first into the ground, ouch!") A.adjustBruteLoss(rand(10,20)) A.Paralyze(60) to_chat(A, "[D] is too far away!") @@ -402,7 +402,7 @@ A.forceMove(D.loc) - A.visible_message("[A] leg-drops [D]!") + A.visible_message("[A] leg-drops [D]!") playsound(A.loc, "swing_hit", 50, 1) A.emote("scream") diff --git a/code/datums/mutations/antenna.dm b/code/datums/mutations/antenna.dm index 842e6894859..a99d8e0f36d 100644 --- a/code/datums/mutations/antenna.dm +++ b/code/datums/mutations/antenna.dm @@ -96,7 +96,7 @@ if(the_dna) to_chat(user, "You uncover that [H.p_their()] true identity is [the_dna.real_name].") else - to_chat(user, "You can't find a mind to read inside of [M].") + to_chat(user, "You can't find a mind to read inside of [M]!") /datum/mutation/human/mindreader/New(class_ = MUT_OTHER, timer, datum/mutation/human/copymut) ..() diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 9b70c6c1d4a..0458174d10c 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -34,7 +34,7 @@ /obj/machinery/teleport/hub/examine(mob/user) . = ..() if(in_range(user, src) || isobserver(user)) - . += "The status display reads: Probability of malfunction decreased by [(accuracy*25)-25]%." + . += "The status display reads: Probability of malfunction decreased by [(accuracy*25)-25]%." /obj/machinery/teleport/hub/proc/link_power_station() if(power_station) @@ -47,7 +47,7 @@ /obj/machinery/teleport/hub/Bumped(atom/movable/AM) if(is_centcom_level(z)) - to_chat(AM, "You can't use this here.") + to_chat(AM, "You can't use this here!") return if(is_ready()) teleport(AM) diff --git a/code/game/objects/items/cigs_lighters.dm b/code/game/objects/items/cigs_lighters.dm index 922ff2fc608..2c2127ce394 100644 --- a/code/game/objects/items/cigs_lighters.dm +++ b/code/game/objects/items/cigs_lighters.dm @@ -80,7 +80,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM var/obj/item/clothing/mask/cigarette/cig = help_light_cig(M) if(lit && cig && user.a_intent == INTENT_HELP) if(cig.lit) - to_chat(user, "[cig] is already lit.") + to_chat(user, "[cig] is already lit!") if(M == user) cig.attackby(src, user) else @@ -165,9 +165,9 @@ CIGARETTE PACKETS ARE IN FANCY.DM to_chat(user, "You dip \the [src] into \the [glass].") else //if not, either the beaker was empty, or the cigarette was full if(!glass.reagents.total_volume) - to_chat(user, "[glass] is empty.") + to_chat(user, "[glass] is empty!") else - to_chat(user, "[src] is full.") + to_chat(user, "[src] is full!") /obj/item/clothing/mask/cigarette/proc/light(flavor_text = null) @@ -277,7 +277,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM var/obj/item/clothing/mask/cigarette/cig = help_light_cig(M) if(lit && cig && user.a_intent == INTENT_HELP) if(cig.lit) - to_chat(user, "The [cig.name] is already lit.") + to_chat(user, "The [cig.name] is already lit!") if(M == user) cig.attackby(src, user) else @@ -634,7 +634,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM var/obj/item/clothing/mask/cigarette/cig = help_light_cig(M) if(lit && cig && user.a_intent == INTENT_HELP) if(cig.lit) - to_chat(user, "The [cig.name] is already lit.") + to_chat(user, "The [cig.name] is already lit!") if(M == user) cig.attackby(src, user) else @@ -801,7 +801,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM add_overlay("vapeopen_low") if(screw && (obj_flags & EMAGGED)) - to_chat(user, "[src] can't be modified!") + to_chat(user, "[src] can't be modified!") else ..() @@ -820,7 +820,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM else to_chat(user, "[src] is already emagged!") else - to_chat(user, "You need to open the cap to do that.") + to_chat(user, "You need to open the cap to do that!") /obj/item/clothing/mask/vape/attack_self(mob/user) if(reagents.total_volume > 0) @@ -874,7 +874,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM if(!reagents.total_volume) if(ismob(loc)) - to_chat(M, "[src] is empty!") + to_chat(M, "[src] is empty!") STOP_PROCESSING(SSobj, src) //it's reusable so it won't unequip when empty return diff --git a/code/game/objects/items/devices/laserpointer.dm b/code/game/objects/items/devices/laserpointer.dm index 2439601b53e..6ae80af1ebe 100644 --- a/code/game/objects/items/devices/laserpointer.dm +++ b/code/game/objects/items/devices/laserpointer.dm @@ -148,9 +148,9 @@ H.Move(targloc) log_combat(user, H, "moved with a laser pointer",src) else - H.visible_message("[H] looks briefly distracted by the light."," You're briefly tempted by the shiny light... ") + H.visible_message("[H] looks briefly distracted by the light."," You're briefly tempted by the shiny light... ") else - H.visible_message("[H] stares at the light"," You stare at the light... ") + H.visible_message("[H] stares at the light"," You stare at the light... ") //cats! for(var/mob/living/simple_animal/pet/cat/C in view(1,targloc)) diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm index 99fa8e5b441..7956aa8542b 100644 --- a/code/game/objects/items/devices/paicard.dm +++ b/code/game/objects/items/devices/paicard.dm @@ -156,7 +156,7 @@ src.add_overlay("pai-null") /obj/item/paicard/proc/alertUpdate() - audible_message("[src] flashes a message across its screen, \"Additional personalities available for download.\"", "[src] vibrates with an alert.") + audible_message("[src] flashes a message across its screen, \"Additional personalities available for download.\"", "[src] vibrates with an alert.") /obj/item/paicard/emp_act(severity) . = ..() diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index b44cc15b1b9..d649474177c 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -632,7 +632,7 @@ GENE SCANNER to_chat(user, "Growth progress: [T.amount_grown]/[SLIME_EVOLUTION_THRESHOLD]") if(T.effectmod) to_chat(user, "Core mutation in progress: [T.effectmod]") - to_chat(user, "Progress in core mutation: [T.applied] / [SLIME_EXTRACT_CROSSING_REQUIRED]") + to_chat(user, "Progress in core mutation: [T.applied] / [SLIME_EXTRACT_CROSSING_REQUIRED]") to_chat(user, "========================") diff --git a/code/game/objects/items/melee/misc.dm b/code/game/objects/items/melee/misc.dm index 4ed0ade9e0c..d9d32e6b159 100644 --- a/code/game/objects/items/melee/misc.dm +++ b/code/game/objects/items/melee/misc.dm @@ -172,7 +172,7 @@ add_fingerprint(user) if((HAS_TRAIT(user, TRAIT_CLUMSY)) && prob(50)) - to_chat(user, "You club yourself over the head.") + to_chat(user, "You club yourself over the head.") user.Paralyze(60 * force) if(ishuman(user)) var/mob/living/carbon/human/H = user @@ -202,8 +202,8 @@ target.Paralyze(60) log_combat(user, target, "stunned", src) src.add_fingerprint(user) - target.visible_message("[user] has knocked down [target] with [src]!", \ - "[user] has knocked down [target] with [src]!") + target.visible_message("[user] has knocked down [target] with [src]!", \ + "[user] has knocked down [target] with [src]!") if(!iscarbon(user)) target.LAssailant = null else @@ -245,14 +245,14 @@ /obj/item/melee/classic_baton/telescopic/attack_self(mob/user) on = !on if(on) - to_chat(user, "You extend the baton.") + to_chat(user, "You extend the baton.") icon_state = "telebaton_1" item_state = "nullrod" w_class = WEIGHT_CLASS_BULKY //doesnt fit in backpack when its on for balance force = 10 //stun baton damage attack_verb = list("smacked", "struck", "cracked", "beaten") else - to_chat(user, "You collapse the baton.") + to_chat(user, "You collapse the baton.") icon_state = "telebaton_0" item_state = null //no sprite for concealment even when in hand slot_flags = ITEM_SLOT_BELT @@ -444,13 +444,13 @@ add_overlay(sausage) /obj/item/melee/roastingstick/proc/extend(user) - to_chat(user, "You extend [src].") + to_chat(user, "You extend [src].") icon_state = "roastingstick_1" item_state = "nullrod" w_class = WEIGHT_CLASS_BULKY /obj/item/melee/roastingstick/proc/retract(user) - to_chat(user, "You collapse [src].") + to_chat(user, "You collapse [src].") icon_state = "roastingstick_0" item_state = null w_class = WEIGHT_CLASS_SMALL diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index 0d4d4dbe844..8e6de5b4ddd 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -718,7 +718,7 @@ /obj/item/twohanded/pitchfork/demonic/attack(mob/target, mob/living/carbon/human/user) if(user.mind && user.owns_soul() && !is_devil(user)) - to_chat(user, "[src] burns in your hands.") + to_chat(user, "[src] burns in your hands.") user.apply_damage(rand(force/2, force), BURN, pick(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) ..() diff --git a/code/game/objects/structures/barsigns.dm b/code/game/objects/structures/barsigns.dm index c15bea20486..20241df7d5b 100644 --- a/code/game/objects/structures/barsigns.dm +++ b/code/game/objects/structures/barsigns.dm @@ -69,7 +69,7 @@ to_chat(user, "Access denied.") return if(broken) - to_chat(user, "The controls seem unresponsive.") + to_chat(user, "The controls seem unresponsive.") return pick_sign(user) diff --git a/code/game/objects/structures/fireaxe.dm b/code/game/objects/structures/fireaxe.dm index f29c0899cf6..e8582cf3db0 100644 --- a/code/game/objects/structures/fireaxe.dm +++ b/code/game/objects/structures/fireaxe.dm @@ -166,7 +166,7 @@ add_overlay("glass_raised") /obj/structure/fireaxecabinet/proc/toggle_lock(mob/user) - to_chat(user, " Resetting circuitry...") + to_chat(user, " Resetting circuitry...") playsound(src, 'sound/machines/locktoggle.ogg', 50, 1) if(do_after(user, 20, target = src)) to_chat(user, "You [locked ? "disable" : "re-enable"] the locking modules.") diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index fc932c32312..d078a4f5ec6 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -510,7 +510,7 @@ else message_admins("[key_name(usr)] set the admin notice.") log_admin("[key_name(usr)] set the admin notice:\n[new_admin_notice]") - to_chat(world, "Admin Notice:\n \t [new_admin_notice]") + to_chat(world, "Admin Notice:\n \t [new_admin_notice]") SSblackbox.record_feedback("tally", "admin_verb", 1, "Set Admin Notice") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! GLOB.admin_notice = new_admin_notice return diff --git a/code/modules/antagonists/abductor/equipment/abduction_surgery.dm b/code/modules/antagonists/abductor/equipment/abduction_surgery.dm index db3bbf1118a..cd8915238d6 100644 --- a/code/modules/antagonists/abductor/equipment/abduction_surgery.dm +++ b/code/modules/antagonists/abductor/equipment/abduction_surgery.dm @@ -45,10 +45,10 @@ time = 32 /datum/surgery_step/gland_insert/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - user.visible_message("[user] starts to insert [tool] into [target].", "You start to insert [tool] into [target]...") + user.visible_message("[user] starts to insert [tool] into [target].", "You start to insert [tool] into [target]...") /datum/surgery_step/gland_insert/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - user.visible_message("[user] inserts [tool] into [target].", "You insert [tool] into [target].") + user.visible_message("[user] inserts [tool] into [target].", "You insert [tool] into [target].") user.temporarilyRemoveItemFromInventory(tool, TRUE) var/obj/item/organ/heart/gland/gland = tool gland.Insert(target, 2) diff --git a/code/modules/antagonists/changeling/powers/tiny_prick.dm b/code/modules/antagonists/changeling/powers/tiny_prick.dm index 660d5754929..9b9ffb483ef 100644 --- a/code/modules/antagonists/changeling/powers/tiny_prick.dm +++ b/code/modules/antagonists/changeling/powers/tiny_prick.dm @@ -84,7 +84,7 @@ if(!selected_dna) return if(NOTRANSSTING in selected_dna.dna.species.species_traits) - to_chat(user, "That DNA is not compatible with changeling retrovirus!") + to_chat(user, "That DNA is not compatible with changeling retrovirus!") return ..() diff --git a/code/modules/events/immovable_rod.dm b/code/modules/events/immovable_rod.dm index a60978fcbc3..3c6f86406df 100644 --- a/code/modules/events/immovable_rod.dm +++ b/code/modules/events/immovable_rod.dm @@ -138,7 +138,7 @@ In my current plan for it, 'solid' will be defined as anything with density == 1 qdel(other) /obj/effect/immovablerod/proc/penetrate(mob/living/L) - L.visible_message("[L] is penetrated by an immovable rod!" , "The rod penetrates you!" , "You hear a CLANG!") + L.visible_message("[L] is penetrated by an immovable rod!" , "The rod penetrates you!" , "You hear a CLANG!") if(ishuman(L)) var/mob/living/carbon/human/H = L H.adjustBruteLoss(160) diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index 4fff7d9a3cd..e335f9c923d 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -225,7 +225,7 @@ GLOBAL_LIST_INIT(hallucination_list, list( update_icon("alienh_pounce") if(hit_atom == target && target.stat!=DEAD) target.Paralyze(100) - target.visible_message("[target] flails around wildly.","[name] pounces on you!") + target.visible_message("[target] flails around wildly.","[name] pounces on you!") /datum/hallucination/xeno_attack //Xeno crawls from nearby vent,jumps at you, and goes back in diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index 89c01536423..c696ae96d61 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -146,7 +146,7 @@ God bless America. to_chat(user, "You need a better grip to do that!") return var/mob/living/carbon/C = user.pulling - user.visible_message("[user] dunks [C]'s face in [src]!") + user.visible_message("[user] dunks [C]'s face in [src]!") reagents.reaction(C, TOUCH) var/permeability = 1 - C.get_permeability_protection(list(HEAD)) C.apply_damage(min(30 * permeability, reagents.total_volume), BURN, BODY_ZONE_HEAD) diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index e5cba0e2087..8355e7701fb 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -75,7 +75,7 @@ qdel(src) return else - to_chat(usr, "You must dry this first!") + to_chat(usr, "You must dry this first!") else return ..() diff --git a/code/modules/mob/living/brain/brain_item.dm b/code/modules/mob/living/brain/brain_item.dm index 0caa7f44004..0583bab6ab5 100644 --- a/code/modules/mob/living/brain/brain_item.dm +++ b/code/modules/mob/living/brain/brain_item.dm @@ -24,7 +24,7 @@ if(C.mind && C.mind.has_antag_datum(/datum/antagonist/changeling) && !no_id_transfer) //congrats, you're trapped in a body you don't control if(brainmob && !(C.stat == DEAD || (HAS_TRAIT(C, TRAIT_DEATHCOMA)))) - to_chat(brainmob, "You can't feel your body! You're still just a brain!") + to_chat(brainmob, "You can't feel your body! You're still just a brain!") forceMove(C) C.update_hair() return diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm index a998d63ec87..7979aced77b 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm @@ -69,7 +69,7 @@ if(H.check_shields(src, 0, "the [name]", attack_type = LEAP_ATTACK)) blocked = TRUE if(!blocked) - L.visible_message("[src] pounces on [L]!", "[src] pounces on you!") + L.visible_message("[src] pounces on [L]!", "[src] pounces on you!") L.Paralyze(100) sleep(2)//Runtime prevention (infinite bump() calls on hulks) step_towards(src,L) @@ -78,7 +78,7 @@ toggle_leap(0) else if(hit_atom.density && !hit_atom.CanPass(src)) - visible_message("[src] smashes into [hit_atom]!", "[src] smashes into [hit_atom]!") + visible_message("[src] smashes into [hit_atom]!", "[src] smashes into [hit_atom]!") Paralyze(40, 1, 1) if(leaping) diff --git a/code/modules/mob/living/carbon/human/species_types/vampire.dm b/code/modules/mob/living/carbon/human/species_types/vampire.dm index 3aec4b0211a..048406f83e5 100644 --- a/code/modules/mob/living/carbon/human/species_types/vampire.dm +++ b/code/modules/mob/living/carbon/human/species_types/vampire.dm @@ -81,18 +81,18 @@ var/mob/living/carbon/H = owner var/obj/item/organ/tongue/vampire/V = target if(V.drain_cooldown >= world.time) - to_chat(H, "You just drained blood, wait a few seconds.") + to_chat(H, "You just drained blood, wait a few seconds!") return if(H.pulling && iscarbon(H.pulling)) var/mob/living/carbon/victim = H.pulling if(H.blood_volume >= BLOOD_VOLUME_MAXIMUM) - to_chat(H, "You're already full!") + to_chat(H, "You're already full!") return if(victim.stat == DEAD) - to_chat(H, "You need a living victim!") + to_chat(H, "You need a living victim!") return if(!victim.blood_volume || (victim.dna && ((NOBLOOD in victim.dna.species.species_traits) || victim.dna.species.exotic_blood))) - to_chat(H, "[victim] doesn't have blood!") + to_chat(H, "[victim] doesn't have blood!") return V.drain_cooldown = world.time + 30 if(victim.anti_magic_check(FALSE, TRUE, FALSE, 0)) @@ -113,7 +113,7 @@ victim.blood_volume = CLAMP(victim.blood_volume - drained_blood, 0, BLOOD_VOLUME_MAXIMUM) H.blood_volume = CLAMP(H.blood_volume + drained_blood, 0, BLOOD_VOLUME_MAXIMUM) if(!victim.blood_volume) - to_chat(H, "You finish off [victim]'s blood supply!") + to_chat(H, "You finish off [victim]'s blood supply.") #undef VAMP_DRAIN_AMOUNT diff --git a/code/modules/mob/living/simple_animal/friendly/dog.dm b/code/modules/mob/living/simple_animal/friendly/dog.dm index 3654eb91df4..cf5cee7be36 100644 --- a/code/modules/mob/living/simple_animal/friendly/dog.dm +++ b/code/modules/mob/living/simple_animal/friendly/dog.dm @@ -284,7 +284,7 @@ if(valid) if(health <= 0) - to_chat(user, "There is merely a dull, lifeless look in [real_name]'s eyes as you put the [item_to_add] on [p_them()].") + to_chat(user, "There is merely a dull, lifeless look in [real_name]'s eyes as you put the [item_to_add] on [p_them()].") else if(user) user.visible_message("[user] puts [item_to_add] on [real_name]'s head. [src] looks at [user] and barks once.", "You put [item_to_add] on [real_name]'s head. [src] gives you a peculiar look, then wags [p_their()] tail once and barks.", diff --git a/code/modules/mob/living/simple_animal/hostile/bees.dm b/code/modules/mob/living/simple_animal/hostile/bees.dm index ec1cb385a15..1194e265c0f 100644 --- a/code/modules/mob/living/simple_animal/hostile/bees.dm +++ b/code/modules/mob/living/simple_animal/hostile/bees.dm @@ -264,7 +264,7 @@ if(queen && queen.beegent) qb.queen.assign_reagent(queen.beegent) //Bees use the global singleton instances of reagents, so we don't need to worry about one bee being deleted and her copies losing their reagents. user.put_in_active_hand(qb) - user.visible_message("[user] injects [src] with royal bee jelly, causing it to split into two bees, MORE BEES!","You inject [src] with royal bee jelly, causing it to split into two bees, MORE BEES!") + user.visible_message("[user] injects [src] with royal bee jelly, causing it to split into two bees, MORE BEES!","You inject [src] with royal bee jelly, causing it to split into two bees, MORE BEES!") else to_chat(user, "You don't have enough royal bee jelly to split a bee in two!") else diff --git a/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm b/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm index ec7451dc2ec..24b22d737f0 100644 --- a/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm +++ b/code/modules/mob/living/simple_animal/hostile/wumborian_fugu.dm @@ -71,13 +71,13 @@ /datum/action/innate/fugu/expand/Activate() var/mob/living/simple_animal/hostile/asteroid/fugu/F = owner if(F.wumbo) - to_chat(F, "YOU'RE ALREADY WUMBO!") + to_chat(F, "YOU'RE ALREADY WUMBO!") return if(F.inflate_cooldown) - to_chat(F, "You need time to gather your strength.") + to_chat(F, "You need time to gather your strength!") return if(F.buffed) - to_chat(F, "Something is interfering with your growth.") + to_chat(F, "Something is interfering with your growth!") return F.wumbo = 1 F.icon_state = "Fugu1" diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index c0e20323cf8..d4cdc8c349e 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -187,7 +187,7 @@ /obj/machinery/photocopier/proc/do_insertion(obj/item/O, mob/user) O.forceMove(src) - to_chat(user, "You insert [O] into [src].") + to_chat(user, "You insert [O] into [src].") flick("photocopier1", src) updateUsrDialog() diff --git a/code/modules/power/singularity/narsie.dm b/code/modules/power/singularity/narsie.dm index a073997b9d1..4c11cdd9d9e 100644 --- a/code/modules/power/singularity/narsie.dm +++ b/code/modules/power/singularity/narsie.dm @@ -188,9 +188,9 @@ to_chat(target, "NAR'SIE HAS LOST INTEREST IN YOU.") target = food if(ishuman(target)) - to_chat(target, "NAR'SIE HUNGERS FOR YOUR SOUL.") + to_chat(target, "NAR'SIE HUNGERS FOR YOUR SOUL.") else - to_chat(target, "NAR'SIE HAS CHOSEN YOU TO LEAD HER TO HER NEXT MEAL.") + to_chat(target, "NAR'SIE HAS CHOSEN YOU TO LEAD HER TO HER NEXT MEAL.") //Wizard narsie /obj/singularity/narsie/wizard diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index b4362d5713e..75f5632794f 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -210,7 +210,7 @@ return if(weapon_weight == WEAPON_HEAVY && user.get_inactive_held_item()) - to_chat(user, "You need both hands free to fire \the [src]!") + to_chat(user, "You need both hands free to fire \the [src]!") return //DUAL (or more!) WIELDING diff --git a/code/modules/projectiles/guns/ballistic.dm b/code/modules/projectiles/guns/ballistic.dm index e504825dd43..b44139e17eb 100644 --- a/code/modules/projectiles/guns/ballistic.dm +++ b/code/modules/projectiles/guns/ballistic.dm @@ -232,7 +232,7 @@ to_chat(user, "You can't seem to figure out how to fit [S] on [src]!") return if(!user.is_holding(src)) - to_chat(user, "You need be holding [src] to fit [S] to it!") + to_chat(user, "You need be holding [src] to fit [S] to it!") return if(suppressed) to_chat(user, "[src] already has a suppressor!") diff --git a/code/modules/projectiles/guns/ballistic/laser_gatling.dm b/code/modules/projectiles/guns/ballistic/laser_gatling.dm index 4f194a5e5fd..8861a1c64e9 100644 --- a/code/modules/projectiles/guns/ballistic/laser_gatling.dm +++ b/code/modules/projectiles/guns/ballistic/laser_gatling.dm @@ -137,11 +137,11 @@ ammo_pack.overheat += burst_size ..() else - to_chat(user, "The gun's heat sensor locked the trigger to prevent lens damage.") + to_chat(user, "The gun's heat sensor locked the trigger to prevent lens damage!") /obj/item/gun/ballistic/minigun/afterattack(atom/target, mob/living/user, flag, params) if(!ammo_pack || ammo_pack.loc != user) - to_chat(user, "You need the backpack power source to fire the gun!") + to_chat(user, "You need the backpack power source to fire the gun!") . = ..() /obj/item/gun/ballistic/minigun/dropped(mob/living/user) diff --git a/code/modules/projectiles/pins.dm b/code/modules/projectiles/pins.dm index 05d63673066..a5eeebd3616 100644 --- a/code/modules/projectiles/pins.dm +++ b/code/modules/projectiles/pins.dm @@ -26,15 +26,15 @@ if(G.pin && (force_replace || G.pin.pin_removeable)) G.pin.forceMove(get_turf(G)) G.pin.gun_remove(user) - to_chat(user, "You remove [G]'s old pin.") + to_chat(user, "You remove [G]'s old pin.") if(!G.pin) if(!user.temporarilyRemoveItemFromInventory(src)) return gun_insert(user, G) - to_chat(user, "You insert [src] into [G].") + to_chat(user, "You insert [src] into [G].") else - to_chat(user, "This firearm already has a firing pin installed.") + to_chat(user, "This firearm already has a firing pin installed.") /obj/item/firing_pin/emag_act(mob/user) if(obj_flags & EMAGGED) diff --git a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm index a3286bf5480..c3e2c9bc1c9 100644 --- a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm +++ b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm @@ -299,7 +299,7 @@ else var/chemid = reagent[1] visible_message("[src] buzzes.", "You hear a faint buzz.") - to_chat(usr, "[src] cannot find Chemical ID: [chemid]!") + to_chat(usr, "[src] cannot find Chemical ID: [chemid]!") playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) return if (resmismatch && alert("[src] is not yet capable of replicating this recipe with the precision it needs, do you want to save it anyway?",, "Yes","No") == "No") diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index 528fa65783c..cf9fa2640e9 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -175,7 +175,7 @@ All effects don't start immediately, but rather get worse over time; the rate is var/obj/item/I = M.get_active_held_item() if(I) M.dropItemToGround(I) - to_chat(M, "Your hands jitter and you drop what you were holding!") + to_chat(M, "Your hands jitter and you drop what you were holding!") M.Jitter(10) if(prob(7)) diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index 31b499e2804..872aaab737c 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -311,7 +311,7 @@ /datum/reagent/consumable/tea/arnold_palmer/on_mob_life(mob/living/carbon/M) if(prob(5)) - to_chat(M, "[pick("You remember to square your shoulders.","You remember to keep your head down.","You can't decide between squaring your shoulders and keeping your head down.","You remember to relax.","You think about how someday you'll get two strokes off your golf game.")]") + to_chat(M, "[pick("You remember to square your shoulders.","You remember to keep your head down.","You can't decide between squaring your shoulders and keeping your head down.","You remember to relax.","You think about how someday you'll get two strokes off your golf game.")]") ..() . = 1 diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index f6a8f92c888..a3d3f412ac9 100755 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -602,10 +602,10 @@ unprotected = TRUE if(unprotected) if(!M.getorganslot(ORGAN_SLOT_EYES)) //can't blind somebody with no eyes - to_chat(M, "Your eye sockets feel wet.") + to_chat(M, "Your eye sockets feel wet.") else if(!M.eye_blurry) - to_chat(M, "Tears well up in your eyes!") + to_chat(M, "Tears well up in your eyes!") M.blind_eyes(2) M.blur_eyes(5) ..() @@ -615,7 +615,7 @@ if(M.eye_blurry) //Don't worsen vision if it was otherwise fine M.blur_eyes(4) if(prob(10)) - to_chat(M, "Your eyes sting!") + to_chat(M, "Your eyes sting!") M.blind_eyes(2) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 0495bf98a19..1f40a2806d1 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -314,11 +314,11 @@ /datum/reagent/medicine/salglu_solution/overdose_process(mob/living/M) if(prob(3)) - to_chat(M, "You feel salty.") + to_chat(M, "You feel salty.") holder.add_reagent(/datum/reagent/consumable/sodiumchloride, 1) holder.remove_reagent(/datum/reagent/medicine/salglu_solution, 0.5) else if(prob(3)) - to_chat(M, "You feel sweet.") + to_chat(M, "You feel sweet.") holder.add_reagent(/datum/reagent/consumable/sugar, 1) holder.remove_reagent(/datum/reagent/medicine/salglu_solution, 0.5) if(prob(33)) @@ -548,7 +548,7 @@ if(prob(20) && iscarbon(M)) var/obj/item/I = M.get_active_held_item() if(I && M.dropItemToGround(I)) - to_chat(M, "Your hands spaz out and you drop what you were holding!") + to_chat(M, "Your hands spaz out and you drop what you were holding!") M.Jitter(10) M.AdjustAllImmobility(-20, FALSE) diff --git a/code/modules/spells/spell_types/rod_form.dm b/code/modules/spells/spell_types/rod_form.dm index 71098de6b01..90b071872eb 100644 --- a/code/modules/spells/spell_types/rod_form.dm +++ b/code/modules/spells/spell_types/rod_form.dm @@ -45,8 +45,8 @@ /obj/effect/immovablerod/wizard/penetrate(mob/living/L) if(L.anti_magic_check()) - L.visible_message("[src] hits [L], but it bounces back, then vanishes!" , "[src] hits you... but it bounces back, then vanishes!" , "You hear a weak, sad, CLANG.") + L.visible_message("[src] hits [L], but it bounces back, then vanishes!" , "[src] hits you... but it bounces back, then vanishes!" , "You hear a weak, sad, CLANG.") qdel(src) return - L.visible_message("[L] is penetrated by an immovable rod!" , "The rod penetrates you!" , "You hear a CLANG!") + L.visible_message("[L] is penetrated by an immovable rod!" , "The rod penetrates you!" , "You hear a CLANG!") L.adjustBruteLoss(70 + damage_bonus) diff --git a/code/modules/surgery/limb_augmentation.dm b/code/modules/surgery/limb_augmentation.dm index 91b0ce73b4c..e68a67d5384 100644 --- a/code/modules/surgery/limb_augmentation.dm +++ b/code/modules/surgery/limb_augmentation.dm @@ -11,7 +11,7 @@ /datum/surgery_step/replace/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - display_results(user, target, "You begin to sever the muscles on [target]'s [parse_zone(user.zone_selected)]...", + display_results(user, target, "You begin to sever the muscles on [target]'s [parse_zone(user.zone_selected)]...", "[user] begins to sever the muscles on [target]'s [parse_zone(user.zone_selected)].", "[user] begins an incision on [target]'s [parse_zone(user.zone_selected)].") @@ -34,11 +34,11 @@ return -1 L = surgery.operated_bodypart if(L) - display_results(user, target, "You begin to augment [target]'s [parse_zone(user.zone_selected)]...", + display_results(user, target, "You begin to augment [target]'s [parse_zone(user.zone_selected)]...", "[user] begins to augment [target]'s [parse_zone(user.zone_selected)] with [aug].", "[user] begins to augment [target]'s [parse_zone(user.zone_selected)].") else - user.visible_message("[user] looks for [target]'s [parse_zone(user.zone_selected)].", "You look for [target]'s [parse_zone(user.zone_selected)]...") + user.visible_message("[user] looks for [target]'s [parse_zone(user.zone_selected)].", "You look for [target]'s [parse_zone(user.zone_selected)]...") //ACTUAL SURGERIES diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 42e24dd55a2..8bb5440f434 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -57,7 +57,7 @@ if(H.health <= H.crit_threshold && beat != BEAT_SLOW) beat = BEAT_SLOW H.playsound_local(get_turf(H), slowbeat,40,0, channel = CHANNEL_HEARTBEAT) - to_chat(owner, "You feel your heart slow down...") + to_chat(owner, "You feel your heart slow down...") if(beat == BEAT_SLOW && H.health > H.crit_threshold) H.stop_sound_channel(CHANNEL_HEARTBEAT) beat = BEAT_NONE @@ -101,7 +101,7 @@ var/mob/living/carbon/human/H = owner if(H.dna && !(NOBLOOD in H.dna.species.species_traits)) H.blood_volume = max(H.blood_volume - blood_loss, 0) - to_chat(H, "You have to keep pumping your blood!") + to_chat(H, "You have to keep pumping your blood!") if(add_colour) H.add_client_colour(/datum/client_colour/cursed_heart_blood) //bloody screen so real add_colour = FALSE @@ -111,7 +111,7 @@ /obj/item/organ/heart/cursed/Insert(mob/living/carbon/M, special = 0) ..() if(owner) - to_chat(owner, "Your heart has been replaced with a cursed one, you have to pump this one manually otherwise you'll die!") + to_chat(owner, "Your heart has been replaced with a cursed one, you have to pump this one manually otherwise you'll die!") /obj/item/organ/heart/cursed/Remove(mob/living/carbon/M, special = 0) ..() @@ -132,7 +132,7 @@ cursed_heart.last_pump = world.time playsound(owner,'sound/effects/singlebeat.ogg',40,1) - to_chat(owner, "Your heart beats.") + to_chat(owner, "Your heart beats.") var/mob/living/carbon/human/H = owner if(istype(H)) diff --git a/code/modules/surgery/prosthetic_replacement.dm b/code/modules/surgery/prosthetic_replacement.dm index 8bb4528c165..de4613923b3 100644 --- a/code/modules/surgery/prosthetic_replacement.dm +++ b/code/modules/surgery/prosthetic_replacement.dm @@ -48,7 +48,7 @@ organ_rejection_dam = 30 if(target_zone == BP.body_zone) //so we can't replace a leg with an arm, or a human arm with a monkey arm. - display_results(user, target, "You begin to replace [target]'s [parse_zone(target_zone)] with [tool]...", + display_results(user, target, "You begin to replace [target]'s [parse_zone(target_zone)] with [tool]...", "[user] begins to replace [target]'s [parse_zone(target_zone)] with [tool].", "[user] begins to replace [target]'s [parse_zone(target_zone)].") else