diff --git a/code/datums/emote.dm b/code/datums/emote.dm index dee076571a8..3fd59a10f38 100644 --- a/code/datums/emote.dm +++ b/code/datums/emote.dm @@ -213,7 +213,7 @@ if(isobserver(user)) for(var/mob/dead/observer/ghost in viewers(user)) - ghost.show_message("[displayed_msg]", EMOTE_VISIBLE, chat_message_type = MESSAGE_TYPE_LOCALCHAT) + ghost.show_message("[displayed_msg]", EMOTE_VISIBLE, chat_message_type = MESSAGE_TYPE_LOCALCHAT) else if((emote_type & EMOTE_AUDIBLE) && !user.mind?.miming) user.audible_message(displayed_msg, deaf_message = "You see how [user] [msg]") diff --git a/code/game/gamemodes/cult/cult_mode.dm b/code/game/gamemodes/cult/cult_mode.dm index 44bb458dc1d..97a7e9e12a0 100644 --- a/code/game/gamemodes/cult/cult_mode.dm +++ b/code/game/gamemodes/cult/cult_mode.dm @@ -43,12 +43,12 @@ /datum/game_mode/cult/declare_completion() if(cult_team.cult_status == NARSIE_HAS_RISEN) SSticker.mode_result = "cult win - cult win" - to_chat(world, " The cult wins! It has succeeded in summoning [GET_CULT_DATA(entity_name, "their god")]!") + to_chat(world, "The cult wins! It has succeeded in summoning [GET_CULT_DATA(entity_name, "their god")]!") else if(cult_team.cult_status == NARSIE_HAS_FALLEN) SSticker.mode_result = "cult draw - narsie died, nobody wins" - to_chat(world, " Nobody wins! [GET_CULT_DATA(entity_name, "the cult god")] was summoned, but banished!") + to_chat(world, "Nobody wins! [GET_CULT_DATA(entity_name, "the cult god")] was summoned, but banished!") else SSticker.mode_result = "cult loss - staff stopped the cult" - to_chat(world, " The staff managed to stop the cult!") + to_chat(world, "The staff managed to stop the cult!") ..() diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm index 7202a4c2b52..121da3dea0c 100644 --- a/code/game/gamemodes/wizard/artefact.dm +++ b/code/game/gamemodes/wizard/artefact.dm @@ -221,7 +221,7 @@ in_use = TRUE ADD_TRAIT(user, SCRYING, SCRYING_ORB) user.visible_message("[user] stares into [src], [user.p_their()] eyes glazing over.", - " You stare into [src], you can see the entire universe!") + "You stare into [src], you can see the entire universe!") ghost = user.ghostize(TRUE, COLOR_BLUE, "Magic Spirit of [user.name]") while(!QDELETED(user)) if(user.key || QDELETED(src)) diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm index fbb7e8eb14e..3891f2e0901 100644 --- a/code/game/objects/items/crayons.dm +++ b/code/game/objects/items/crayons.dm @@ -346,7 +346,7 @@ to_chat(user, "Theres not enough paint left to have an effect!") return uses -= 10 - user.visible_message(" [user] sprays [src] into the face of [target]!") + user.visible_message("[user] sprays [src] into the face of [target]!") if(!attackee.is_eyes_covered()) // eyes aren't covered? ARGH IT BURNS. attackee.Confused(6 SECONDS) attackee.KnockDown(6 SECONDS) diff --git a/code/game/objects/items/tools/welder.dm b/code/game/objects/items/tools/welder.dm index 3f630bf4a41..891223a9efe 100644 --- a/code/game/objects/items/tools/welder.dm +++ b/code/game/objects/items/tools/welder.dm @@ -262,7 +262,7 @@ user.visible_message("[user] is tinkering with [src]! It looks like [user.p_theyre()] trying to commit suicide!") - to_chat(user, " You begin tinkering with [src]...") + to_chat(user, "You begin tinkering with [src]...") user.Immobilize(10 SECONDS) sleep(2 SECONDS) add_fingerprint(user) diff --git a/code/game/objects/items/weapons/bio_chips/bio_chip.dm b/code/game/objects/items/weapons/bio_chips/bio_chip.dm index b1b64991e3e..6fd3880d883 100644 --- a/code/game/objects/items/weapons/bio_chips/bio_chip.dm +++ b/code/game/objects/items/weapons/bio_chips/bio_chip.dm @@ -69,17 +69,17 @@ if(LAZYIN(trigger_emotes, emote_key) && !on_implant) if(!silent) - to_chat(user, " You've already registered [emote_key]!") + to_chat(user, "You've already registered [emote_key]!") return FALSE if(emote_key == "me" || emote_key == "custom") if(!silent) - to_chat(user, " You can't trigger [src] with a custom emote.") + to_chat(user, "You can't trigger [src] with a custom emote.") return FALSE if(!(emote_key in user.usable_emote_keys(trigger_causes & BIOCHIP_EMOTE_TRIGGER_INTENTIONAL))) if(!silent) - to_chat(user, " You can't trigger [src] with that emote! Try *help to see emotes you can use.") + to_chat(user, "You can't trigger [src] with that emote! Try *help to see emotes you can use.") return FALSE if(!(emote_key in user.usable_emote_keys(trigger_causes & BIOCHIP_EMOTE_TRIGGER_UNINTENTIONAL))) diff --git a/code/game/objects/items/weapons/grenades/chem_grenade.dm b/code/game/objects/items/weapons/grenades/chem_grenade.dm index bc1d13f7f18..2e73d0a6174 100644 --- a/code/game/objects/items/weapons/grenades/chem_grenade.dm +++ b/code/game/objects/items/weapons/grenades/chem_grenade.dm @@ -402,7 +402,7 @@ unit_spread += 25 else unit_spread = 5 - to_chat(user, " You set the time release to [unit_spread] units per detonation.") + to_chat(user, "You set the time release to [unit_spread] units per detonation.") /obj/item/grenade/chem_grenade/adv_release/prime() if(stage != READY) diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 304d37ed247..b126796b3b3 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -34,15 +34,15 @@ for(var/obj/item/I in contents) space_used += I.w_class if(!space_used) - . += " [src] is empty." + . += "[src] is empty." else if(space_used <= max_combined_w_class * 0.6) - . += " [src] still has plenty of remaining space." + . += "[src] still has plenty of remaining space." else if(space_used <= max_combined_w_class * 0.8) - . += " [src] is beginning to run out of space." + . += "[src] is beginning to run out of space." else if(space_used < max_combined_w_class) - . += " [src] doesn't have much space left." + . += "[src] doesn't have much space left." else - . += " [src] is full." + . += "[src] is full." /* * Backpack Types @@ -70,7 +70,7 @@ user.visible_message("[user] grins as [user.p_they()] begin[user.p_s()] to put a Bag of Holding into a Bag of Holding!", "You begin to put the Bag of Holding into the Bag of Holding!") if(do_after(user, 30, target=src)) investigate_log("has become a singularity. Caused by [user.key]","singulo") - user.visible_message("[user] erupts in evil laughter as [user.p_they()] put[user.p_s()] the Bag of Holding into another Bag of Holding!", "You can't help but laugh wildly as you put the Bag of Holding into another Bag of Holding, complete darkness surrounding you."," You hear the sound of scientific evil brewing!") + user.visible_message("[user] erupts in evil laughter as [user.p_they()] put[user.p_s()] the Bag of Holding into another Bag of Holding!", "You can't help but laugh wildly as you put the Bag of Holding into another Bag of Holding, complete darkness surrounding you."," You hear the sound of scientific evil brewing!") qdel(W) var/obj/singularity/singulo = new /obj/singularity(get_turf(user)) singulo.energy = 300 //To give it a small boost diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index b349b39b73e..8a26640b9ca 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -244,7 +244,7 @@ /obj/item/roller_holder/attack_self(mob/user as mob) if(!held) - to_chat(user, " The rack is empty.") + to_chat(user, "The rack is empty.") return to_chat(user, "You deploy the roller bed.") diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 02145bca38e..d7f50b1ea28 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -167,7 +167,7 @@ //byond bug ID:2256651 if(asset_cache_job && (asset_cache_job in completed_asset_jobs)) - to_chat(src, " An error has been detected in how your client is receiving resources. Attempting to correct.... (If you keep seeing these messages you might want to close byond and reconnect)") + to_chat(src, "An error has been detected in how your client is receiving resources. Attempting to correct.... (If you keep seeing these messages you might want to close byond and reconnect)") src << browse("...", "window=asset_cache_browser") return diff --git a/code/modules/food_and_drinks/drinks/drinks_base.dm b/code/modules/food_and_drinks/drinks/drinks_base.dm index bbfbaa8e0f3..ba2b1905bbe 100644 --- a/code/modules/food_and_drinks/drinks/drinks_base.dm +++ b/code/modules/food_and_drinks/drinks/drinks_base.dm @@ -19,11 +19,11 @@ /obj/item/reagent_containers/drinks/attack(mob/M, mob/user, def_zone) if(!reagents || !reagents.total_volume) - to_chat(user, " None of [src] left, oh no!") + to_chat(user, "None of [src] left, oh no!") return FALSE if(!is_drainable()) - to_chat(user, " You need to open [src] first!") + to_chat(user, "You need to open [src] first!") return FALSE if(iscarbon(M)) @@ -62,15 +62,15 @@ if(target.is_refillable() && is_drainable()) //Something like a glass. Player probably wants to transfer TO it. if(!reagents.total_volume) - to_chat(user, " [src] is empty.") + to_chat(user, "[src] is empty.") return FALSE if(target.reagents.holder_full()) - to_chat(user, " [target] is full.") + to_chat(user, "[target] is full.") return FALSE var/trans = reagents.trans_to(target, amount_per_transfer_from_this) - to_chat(user, " You transfer [trans] units of the solution to [target].") + to_chat(user, "You transfer [trans] units of the solution to [target].") else if(target.is_drainable()) //A dispenser. Transfer FROM it TO us. if(!is_refillable()) @@ -93,16 +93,16 @@ . = ..() if(in_range(user, src)) if(!reagents || reagents.total_volume == 0) - . += " \The [src] is empty!" + . += "[src] is empty!" else if(reagents.total_volume <= volume/4) - . += " \The [src] is almost empty!" + . += "[src] is almost empty!" else if(reagents.total_volume <= volume*0.66) - . += " \The [src] is half full!"// We're all optimistic, right?! + . += "[src] is half full!"// We're all optimistic, right?! else if(reagents.total_volume <= volume*0.90) - . += " \The [src] is almost full!" + . += "[src] is almost full!" else - . += " \The [src] is full!" + . += "[src] is full!" //////////////////////////////////////////////////////////////////////////////// /// Drinks. END diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index a748cdfe490..b65052296f6 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -435,7 +435,7 @@ do {\ . = ..() if(LAZYLEN(ingredients)) var/whatsinside = pick(ingredients) - . += " You think you can see [whatsinside] in there." + . += "You think you can see [whatsinside] in there." /obj/item/food/snacks/customizable/proc/newname() diff --git a/code/modules/hydroponics/gene_modder.dm b/code/modules/hydroponics/gene_modder.dm index f217454134b..6cac5b3b964 100644 --- a/code/modules/hydroponics/gene_modder.dm +++ b/code/modules/hydroponics/gene_modder.dm @@ -422,7 +422,7 @@ user.put_in_hands(D) update_genes() return - to_chat(user, " No Empty Disks to Eject!") + to_chat(user, "No Empty Disks to Eject!") if("set_read_only") var/obj/item/disk/plantgene/D = contents[text2num(params["index"])] D.read_only = !D.read_only diff --git a/code/modules/martial_arts/krav_maga.dm b/code/modules/martial_arts/krav_maga.dm index 43ccfb3cfa3..9d1ddb1e5f2 100644 --- a/code/modules/martial_arts/krav_maga.dm +++ b/code/modules/martial_arts/krav_maga.dm @@ -17,7 +17,7 @@ to_chat(owner, "You cannot cancel an attack you haven't prepared!") return to_chat(owner, "You cancel your prepared attack.") - owner.visible_message(" [owner] relaxes [owner.p_their()] stance.") + owner.visible_message("[owner] relaxes [owner.p_their()] stance.") H.mind.martial_art.combos.Cut() H.mind.martial_art.in_stance = FALSE diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index b2764644889..2f9ee2df6cc 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -463,7 +463,7 @@ /obj/item/organ/internal/cyberimp/arm/katana/Extend() for(var/obj/item/cursed_katana/katana in contents) if(katana.shattered) - to_chat(owner, " Your cursed katana has not reformed yet!") + to_chat(owner, "Your cursed katana has not reformed yet!") return FALSE return ..() diff --git a/code/modules/power/lights.dm b/code/modules/power/lights.dm index 84089bcc89a..e0cc4c372a3 100644 --- a/code/modules/power/lights.dm +++ b/code/modules/power/lights.dm @@ -991,7 +991,7 @@ update() /obj/item/light/suicide_act(mob/living/carbon/human/user) - user.visible_message("[user] touches [src], burning [user.p_their()] hands off!", "You touch [src], burning your hands off!") + user.visible_message("[user] touches [src], burning [user.p_their()] hands off!", "You touch [src], burning your hands off!") for(var/oname in list("l_hand", "r_hand")) var/obj/item/organ/external/limb = user.get_organ(oname) diff --git a/code/modules/surgery/bio_chip_removal.dm b/code/modules/surgery/bio_chip_removal.dm index e0099c14c38..f7c8d88b18b 100644 --- a/code/modules/surgery/bio_chip_removal.dm +++ b/code/modules/surgery/bio_chip_removal.dm @@ -97,7 +97,7 @@ qdel(I) else user.visible_message( - " [user] could not find anything inside [target]'s [affected.name], and pulls \the [tool] out.", + "[user] could not find anything inside [target]'s [affected.name], and pulls \the [tool] out.", "You could not find anything inside [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) diff --git a/code/modules/surgery/bones.dm b/code/modules/surgery/bones.dm index f9c096ab3c1..acfcbfcdedd 100644 --- a/code/modules/surgery/bones.dm +++ b/code/modules/surgery/bones.dm @@ -69,8 +69,8 @@ /datum/surgery_step/glue_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] applies some [tool] to [target]'s bone in [affected.name].", - " You apply some [tool] to [target]'s bone in [affected.name] with \the [tool].", + "[user] applies some [tool] to [target]'s bone in [affected.name].", + "You apply some [tool] to [target]'s bone in [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -79,8 +79,8 @@ /datum/surgery_step/glue_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", - " Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", + "[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", + "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -108,8 +108,8 @@ /datum/surgery_step/set_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] sets the bone in [target]'s [affected.name] in place with \the [tool].", - " You set the bone in [target]'s [affected.name] in place with \the [tool].", + "[user] sets the bone in [target]'s [affected.name] in place with \the [tool].", + "You set the bone in [target]'s [affected.name] in place with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_CONTINUE @@ -117,8 +117,8 @@ /datum/surgery_step/set_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!", - " Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!", + "[user]'s hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!", + "Your hand slips, damaging the bone in [target]'s [affected.name] with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.receive_damage(5) @@ -138,8 +138,8 @@ /datum/surgery_step/set_bone/mend_skull/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] sets [target]'s [affected.encased] with \the [tool].", - " You set [target]'s [affected.encased] with \the [tool].", + "[user] sets [target]'s [affected.encased] with \the [tool].", + "You set [target]'s [affected.encased] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -181,8 +181,8 @@ /datum/surgery_step/finish_bone/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has mended the damaged bones in [target]'s [affected.name] with \the [tool].", - " You have mended the damaged bones in [target]'s [affected.name] with \the [tool].", + "[user] has mended the damaged bones in [target]'s [affected.name] with \the [tool].", + "You have mended the damaged bones in [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.mend_fracture() @@ -191,8 +191,8 @@ /datum/surgery_step/finish_bone/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", - " Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", + "[user]'s hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", + "Your hand slips, smearing [tool] in the incision in [target]'s [affected.name]!", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY diff --git a/code/modules/surgery/cavity_implant.dm b/code/modules/surgery/cavity_implant.dm index 66f06b30e55..8baebebdff1 100644 --- a/code/modules/surgery/cavity_implant.dm +++ b/code/modules/surgery/cavity_implant.dm @@ -135,8 +135,8 @@ /datum/surgery_step/cavity/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/chest/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", - " Your hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", + "[user]'s hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", + "Your hand slips, scraping around inside [target]'s [affected.name] with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.receive_damage(20) @@ -166,8 +166,8 @@ /datum/surgery_step/cavity/make_space/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/chest/affected = target.get_organ(target_zone) user.visible_message( - " [user] makes some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", - " You make some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", + "[user] makes some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", + "You make some space inside [target]'s [get_cavity(affected)] cavity with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -198,8 +198,8 @@ /datum/surgery_step/cavity/close_space/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/chest/affected = target.get_organ(target_zone) user.visible_message( - " [user] mends [target]'s [get_cavity(affected)] cavity walls with \the [tool].", - " You mend [target]'s [get_cavity(affected)] cavity walls with \the [tool].", + "[user] mends [target]'s [get_cavity(affected)] cavity walls with \the [tool].", + "You mend [target]'s [get_cavity(affected)] cavity walls with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) diff --git a/code/modules/surgery/core_removal.dm b/code/modules/surgery/core_removal.dm index e89d1491243..65a0ca70a6f 100644 --- a/code/modules/surgery/core_removal.dm +++ b/code/modules/surgery/core_removal.dm @@ -26,13 +26,13 @@ return ..() /datum/surgery_step/slime/cut_flesh/end_step(mob/living/user, mob/living/simple_animal/slime/target, target_zone, obj/item/tool) - user.visible_message(" [user] cuts through [target]'s flesh with \the [tool].", - " You cut through [target]'s flesh with \the [tool], revealing its silky innards.", chat_message_type = MESSAGE_TYPE_COMBAT) + user.visible_message("[user] cuts through [target]'s flesh with \the [tool].", + "You cut through [target]'s flesh with \the [tool], revealing its silky innards.", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_CONTINUE /datum/surgery_step/slime/cut_flesh/fail_step(mob/living/user, mob/living/simple_animal/slime/target, target_zone, obj/item/tool) - user.visible_message(" [user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \ - " Your hand slips, tearing [target]'s flesh with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT) + user.visible_message("[user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \ + "Your hand slips, tearing [target]'s flesh with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_RETRY /datum/surgery_step/slime/extract_core @@ -67,6 +67,6 @@ return SURGERY_STEP_CONTINUE /datum/surgery_step/slime/extract_core/fail_step(mob/living/user, mob/living/simple_animal/slime/target, target_zone, obj/item/tool) - user.visible_message(" [user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \ - " Your hand slips, tearing [target]'s flesh with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT) + user.visible_message("[user]'s hand slips, tearing [target]'s flesh with \the [tool]!", \ + "Your hand slips, tearing [target]'s flesh with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_RETRY diff --git a/code/modules/surgery/encased.dm b/code/modules/surgery/encased.dm index 9651704951d..13bed7936b0 100644 --- a/code/modules/surgery/encased.dm +++ b/code/modules/surgery/encased.dm @@ -33,8 +33,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has cut [target]'s [affected.encased] open with \the [tool].", - " You have cut [target]'s [affected.encased] open with \the [tool].", + "[user] has cut [target]'s [affected.encased] open with \the [tool].", + "You have cut [target]'s [affected.encased] open with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.open = ORGAN_ORGANIC_ENCASED_OPEN @@ -45,8 +45,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, cracking [target]'s [affected.encased] with \the [tool]!" , - " Your hand slips, cracking [target]'s [affected.encased] with \the [tool]!", + "[user]'s hand slips, cracking [target]'s [affected.encased] with \the [tool]!" , + "Your hand slips, cracking [target]'s [affected.encased] with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -82,8 +82,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] forces open [target]'s [affected.encased] with \the [tool].", - " You force open [target]'s [affected.encased] with \the [tool].", + "[user] forces open [target]'s [affected.encased] with \the [tool].", + "You force open [target]'s [affected.encased] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -95,8 +95,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, cracking [target]'s [affected.encased]!", - " Your hand slips, cracking [target]'s [affected.encased]!", + "[user]'s hand slips, cracking [target]'s [affected.encased]!", + "Your hand slips, cracking [target]'s [affected.encased]!", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -164,8 +164,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - "[user] starts applying \the [tool] to [target]'s [affected.encased].", - "You start applying \the [tool] to [target]'s [affected.encased].", + "[user] starts applying [tool] to [target]'s [affected.encased].", + "You start applying [tool] to [target]'s [affected.encased].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.custom_pain("Something hurts horribly in your [affected.name]!") @@ -175,8 +175,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] applied \the [tool] to [target]'s [affected.encased].", - " You applied \the [tool] to [target]'s [affected.encased].", + "[user] applied [tool] to [target]'s [affected.encased].", + "You applied \the [tool] to [target]'s [affected.encased].", chat_message_type = MESSAGE_TYPE_COMBAT ) diff --git a/code/modules/surgery/generic.dm b/code/modules/surgery/generic.dm index 925bf8b7c64..dc6c9895737 100644 --- a/code/modules/surgery/generic.dm +++ b/code/modules/surgery/generic.dm @@ -83,8 +83,8 @@ /datum/surgery_step/generic/clamp_bleeders/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] clamps bleeders in [target]'s [affected.name] with \the [tool].", - " You clamp bleeders in [target]'s [affected.name] with \the [tool].", + "[user] clamps bleeders in [target]'s [affected.name] with \the [tool].", + "You clamp bleeders in [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) spread_germs_to_organ(affected, user, tool) @@ -129,14 +129,14 @@ /datum/surgery_step/generic/retract_skin/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) - var/msg = " [user] keeps the incision open on [target]'s [affected.name] with \the [tool]." - var/self_msg = " You keep the incision open on [target]'s [affected.name] with \the [tool]." + var/msg = "[user] keeps the incision open on [target]'s [affected.name] with \the [tool]." + var/self_msg = "You keep the incision open on [target]'s [affected.name] with \the [tool]." if(target_zone == BODY_ZONE_CHEST) - msg = " [user] keeps the ribcage open on [target]'s torso with \the [tool]." - self_msg = " You keep the ribcage open on [target]'s torso with \the [tool]." + msg = "[user] keeps the ribcage open on [target]'s torso with \the [tool]." + self_msg = "You keep the ribcage open on [target]'s torso with \the [tool]." if(target_zone == BODY_ZONE_PRECISE_GROIN) - msg = " [user] keeps the incision open on [target]'s lower abdomen with \the [tool]." - self_msg = " You keep the incision open on [target]'s lower abdomen with \the [tool]." + msg = "[user] keeps the incision open on [target]'s lower abdomen with \the [tool]." + self_msg = "You keep the incision open on [target]'s lower abdomen with \the [tool]." user.visible_message(msg, self_msg, chat_message_type = MESSAGE_TYPE_COMBAT) affected.open = ORGAN_ORGANIC_ENCASED_OPEN return SURGERY_STEP_CONTINUE @@ -144,13 +144,13 @@ /datum/surgery_step/generic/retract_skin/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) var/msg = "[user]'s hand slips, tearing the edges of incision on [target]'s [affected.name] with \the [tool]!" - var/self_msg = " Your hand slips, tearing the edges of incision on [target]'s [affected.name] with \the [tool]!" + var/self_msg = "Your hand slips, tearing the edges of incision on [target]'s [affected.name] with \the [tool]!" if(target_zone == BODY_ZONE_CHEST) msg = "[user]'s hand slips, damaging several organs [target]'s torso with \the [tool]!" - self_msg = " Your hand slips, damaging several organs [target]'s torso with \the [tool]!" + self_msg = "Your hand slips, damaging several organs [target]'s torso with \the [tool]!" if(target_zone == BODY_ZONE_PRECISE_GROIN) msg = "[user]'s hand slips, damaging several organs [target]'s lower abdomen with \the [tool]" - self_msg = " Your hand slips, damaging several organs [target]'s lower abdomen with \the [tool]!" + self_msg = "Your hand slips, damaging several organs [target]'s lower abdomen with \the [tool]!" user.visible_message(msg, self_msg, chat_message_type = MESSAGE_TYPE_COMBAT) target.apply_damage(12, BRUTE, affected, sharp = TRUE) return SURGERY_STEP_RETRY @@ -279,8 +279,8 @@ /datum/surgery_step/generic/amputate/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] amputates [target]'s [affected.name] at the [affected.amputation_point] with \the [tool].", - " You amputate [target]'s [affected.name] with \the [tool].", + "[user] amputates [target]'s [affected.name] at the [affected.amputation_point] with \the [tool].", + "You amputate [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -299,8 +299,8 @@ /datum/surgery_step/generic/amputate/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", - " Your hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", + "[user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", + "Your hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.receive_damage(30) diff --git a/code/modules/surgery/organs/liver.dm b/code/modules/surgery/organs/liver.dm index 799b8e8a6ab..a726f375f8c 100644 --- a/code/modules/surgery/organs/liver.dm +++ b/code/modules/surgery/organs/liver.dm @@ -9,7 +9,7 @@ /obj/item/organ/internal/liver/on_life() if(germ_level > INFECTION_LEVEL_ONE) if(prob(1)) - to_chat(owner, " Your skin itches.") + to_chat(owner, "Your skin itches.") if(germ_level > INFECTION_LEVEL_TWO) if(prob(1)) owner.vomit() diff --git a/code/modules/surgery/organs_internal.dm b/code/modules/surgery/organs_internal.dm index 4f07e8a71c4..ad26db7047a 100644 --- a/code/modules/surgery/organs_internal.dm +++ b/code/modules/surgery/organs_internal.dm @@ -243,15 +243,15 @@ if(I && I.damage) if(!I.is_robotic() && !istype(tool, /obj/item/stack/nanopaste)) user.visible_message( - " [user] treats damage to [target]'s [I.name] with [tool_name].", - " You treat damage to [target]'s [I.name] with [tool_name].", + "[user] treats damage to [target]'s [I.name] with [tool_name].", + "You treat damage to [target]'s [I.name] with [tool_name].", chat_message_type = MESSAGE_TYPE_COMBAT ) I.damage = 0 else if(I.is_robotic() && istype (tool, /obj/item/stack/nanopaste)) user.visible_message( - " [user] treats damage to [target]'s [I.name] with [tool_name].", - " You treat damage to [target]'s [I.name] with [tool_name].", + "[user] treats damage to [target]'s [I.name] with [tool_name].", + "You treat damage to [target]'s [I.name] with [tool_name].", chat_message_type = MESSAGE_TYPE_COMBAT ) I.damage = 0 @@ -264,8 +264,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, getting messy and tearing the inside of [target]'s [parse_zone(target_zone)] with [tool]!", - " Your hand slips, getting messy and tearing the inside of [target]'s [parse_zone(target_zone)] with [tool]!", + "[user]'s hand slips, getting messy and tearing the inside of [target]'s [parse_zone(target_zone)] with [tool]!", + "Your hand slips, getting messy and tearing the inside of [target]'s [parse_zone(target_zone)] with [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -341,8 +341,8 @@ return SURGERY_STEP_CONTINUE user.visible_message( - " [user] has separated and extracts [target]'s [extracting] with [tool].", - " You have separated and extracted [target]'s [extracting] with [tool].", + "[user] has separated and extracts [target]'s [extracting] with [tool].", + "You have separated and extracted [target]'s [extracting] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -364,15 +364,15 @@ var/obj/item/organ/affected = H.get_organ(user.zone_selected) if(affected) user.visible_message( - " [user]'s hand slips, damaging [target]'s [affected.name] with [tool]!", - " Your hand slips, damaging [target]'s [affected.name] with [tool]!", + "[user]'s hand slips, damaging [target]'s [affected.name] with [tool]!", + "Your hand slips, damaging [target]'s [affected.name] with [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.receive_damage(20) else user.visible_message( - " [user]'s hand slips, damaging [target]'s [parse_zone(target_zone)] with [tool]!", - " Your hand slips, damaging [target]'s [parse_zone(target_zone)] with [tool]!", + "[user]'s hand slips, damaging [target]'s [parse_zone(target_zone)] with [tool]!", + "Your hand slips, damaging [target]'s [parse_zone(target_zone)] with [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -416,11 +416,11 @@ return SURGERY_BEGINSTEP_SKIP if(I.damage > (I.max_damage * 0.75)) - to_chat(user, " [I] is in no state to be transplanted.") + to_chat(user, "[I] is in no state to be transplanted.") return SURGERY_BEGINSTEP_SKIP if(target.get_int_organ(I)) - to_chat(user, " [target] already has [I].") + to_chat(user, "[target] already has [I].") return SURGERY_BEGINSTEP_SKIP if(affected) @@ -456,12 +456,12 @@ spread_germs_to_organ(I, user, tool) if(affected) - user.visible_message(" [user] has transplanted [tool] into [target]'s [affected.name].", - " You have transplanted [tool] into [target]'s [affected.name].", + user.visible_message("[user] has transplanted [tool] into [target]'s [affected.name].", + "You have transplanted [tool] into [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT) else - user.visible_message(" [user] has transplanted [tool] into [target]'s [parse_zone(target_zone)].", - " You have transplanted [tool] into [target]'s [parse_zone(target_zone)].", + user.visible_message("[user] has transplanted [tool] into [target]'s [parse_zone(target_zone)].", + "You have transplanted [tool] into [target]'s [parse_zone(target_zone)].", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_CONTINUE @@ -580,14 +580,14 @@ if(istype(C, /obj/item/reagent_containers/syringe)) user.visible_message( - " [user] has injected [tool] into [target]'s [I.name].", - " You have injected [tool] into [target]'s [I.name].", + "[user] has injected [tool] into [target]'s [I.name].", + "You have injected [tool] into [target]'s [I.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) else user.visible_message( - " [user] has poured some of [tool] over [target]'s [I.name].", - " You have poured some of [tool] over [target]'s [I.name].", + "[user] has poured some of [tool] over [target]'s [I.name].", + "You have poured some of [tool] over [target]'s [I.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -628,8 +628,8 @@ R.reaction(target, REAGENT_INGEST) user.visible_message( - " [user]'s hand slips, splashing the contents of [tool] all over [target][affected ? "'s [affected.name]" : ""] incision!", - " Your hand slips, splashing the contents of [tool] all over [target][affected ? "'s [affected.name]" : ""] incision!", + "[user]'s hand slips, splashing the contents of [tool] all over [target][affected ? "'s [affected.name]" : ""] incision!", + "Your hand slips, splashing the contents of [tool] all over [target][affected ? "'s [affected.name]" : ""] incision!", chat_message_type = MESSAGE_TYPE_COMBAT ) // continue here since we want to keep moving in the surgery @@ -668,7 +668,7 @@ var/self_msg if(affected && affected.encased) msg = "[user] bends [target]'s [affected.encased] back into place with [tool]." - self_msg = " You bend [target]'s [affected.encased] back into place with [tool]." + self_msg = "You bend [target]'s [affected.encased] back into place with [tool]." affected.open = ORGAN_ORGANIC_ENCASED_OPEN else msg = "[user] pulls [target]'s flesh back into place with [tool]." @@ -682,12 +682,12 @@ var/msg var/self_msg if(affected && affected.encased) - msg = " [user]'s hand slips, bending [target]'s [affected.encased] the wrong way!" - self_msg = " Your hand slips, bending [target]'s [affected.encased] the wrong way!" + msg = "[user]'s hand slips, bending [target]'s [affected.encased] the wrong way!" + self_msg = "Your hand slips, bending [target]'s [affected.encased] the wrong way!" affected.fracture() else - msg = " [user]'s hand slips, tearing the skin!" - self_msg = " Your hand slips, tearing skin!" + msg = "[user]'s hand slips, tearing the skin!" + self_msg = "Your hand slips, tearing skin!" if(affected) affected.receive_damage(20) user.visible_message(msg, self_msg, chat_message_type = MESSAGE_TYPE_COMBAT) @@ -722,16 +722,16 @@ /datum/surgery_step/saw_carapace/end_step(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user] has cut [target]'s [target_zone] open with [tool].", - " You have cut [target]'s [target_zone] open with [tool]." + "[user] has cut [target]'s [target_zone] open with [tool].", + "You have cut [target]'s [target_zone] open with [tool]." ) return SURGERY_STEP_CONTINUE /datum/surgery_step/saw_carapace/fail_step(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user]'s hand slips, cracking [target]'s [target_zone] with [tool]!", - " Your hand slips, cracking [target]'s [target_zone] with [tool]!" + "[user]'s hand slips, cracking [target]'s [target_zone] with [tool]!", + "Your hand slips, cracking [target]'s [target_zone] with [tool]!" ) return SURGERY_STEP_RETRY @@ -763,8 +763,8 @@ /datum/surgery_step/cut_carapace/end_step(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user] has made an incision on [target]'s [target_zone] with [tool].", - " You have made an incision on [target]'s [target_zone] with [tool].", + "[user] has made an incision on [target]'s [target_zone] with [tool].", + "You have made an incision on [target]'s [target_zone] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_CONTINUE @@ -803,26 +803,26 @@ return ..() /datum/surgery_step/retract_carapace/end_step(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - var/msg = " [user] keeps the incision open on [target]'s [target_zone] with [tool]." - var/self_msg = " You keep the incision open on [target]'s [target_zone] with [tool]." + var/msg = "[user] keeps the incision open on [target]'s [target_zone] with [tool]." + var/self_msg = "You keep the incision open on [target]'s [target_zone] with [tool]." if(target_zone == BODY_ZONE_CHEST) - msg = " [user] keeps the ribcage open on [target]'s torso with [tool]." - self_msg = " You keep the ribcage open on [target]'s torso with [tool]." + msg = "[user] keeps the ribcage open on [target]'s torso with [tool]." + self_msg = "You keep the ribcage open on [target]'s torso with [tool]." if(target_zone == BODY_ZONE_PRECISE_GROIN) - msg = " [user] keeps the incision open on [target]'s lower abdomen with [tool]." - self_msg = " You keep the incision open on [target]'s lower abdomen with [tool]." + msg = "[user] keeps the incision open on [target]'s lower abdomen with [tool]." + self_msg = "You keep the incision open on [target]'s lower abdomen with [tool]." user.visible_message(msg, self_msg, chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_CONTINUE /datum/surgery_step/generic/retract_carapace/fail_step(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - var/msg = " [user]'s hand slips, tearing the edges of incision on [target]'s [target_zone] with [tool]!" - var/self_msg = " Your hand slips, tearing the edges of incision on [target]'s [target_zone] with [tool]!" + var/msg = "[user]'s hand slips, tearing the edges of incision on [target]'s [target_zone] with [tool]!" + var/self_msg = "Your hand slips, tearing the edges of incision on [target]'s [target_zone] with [tool]!" if(target_zone == BODY_ZONE_CHEST) - msg = " [user]'s hand slips, damaging several organs in [target]'s torso with [tool]!" - self_msg = " Your hand slips, damaging several organs in [target]'s torso with [tool]!" + msg = "[user]'s hand slips, damaging several organs in [target]'s torso with [tool]!" + self_msg = "Your hand slips, damaging several organs in [target]'s torso with [tool]!" if(target_zone == BODY_ZONE_PRECISE_GROIN) - msg = " [user]'s hand slips, damaging several organs in [target]'s lower abdomen with [tool]" - self_msg = " Your hand slips, damaging several organs in [target]'s lower abdomen with [tool]!" + msg = "[user]'s hand slips, damaging several organs in [target]'s lower abdomen with [tool]" + self_msg = "Your hand slips, damaging several organs in [target]'s lower abdomen with [tool]!" user.visible_message(msg, self_msg, chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_RETRY diff --git a/code/modules/surgery/other.dm b/code/modules/surgery/other.dm index 59b9d14998f..9591072d1ac 100644 --- a/code/modules/surgery/other.dm +++ b/code/modules/surgery/other.dm @@ -101,8 +101,8 @@ /datum/surgery_step/fix_vein/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has patched the damaged vein in [target]'s [affected.name] with \the [tool].", - " You have patched the damaged vein in [target]'s [affected.name] with \the [tool].", + "[user] has patched the damaged vein in [target]'s [affected.name] with \the [tool].", + "You have patched the damaged vein in [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -208,8 +208,8 @@ /datum/surgery_step/fix_dead_tissue/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", - " You have cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", + "[user] has cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", + "You have cut away necrotic tissue in [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.open = ORGAN_ORGANIC_OPEN @@ -292,8 +292,8 @@ target.update_body() user.visible_message( - " [user] applies [trans] units of the solution to affected tissue in [target]'s [affected.name]", - " You apply [trans] units of the solution to affected tissue in [target]'s [affected.name] with \the [tool].", + "[user] applies [trans] units of the solution to affected tissue in [target]'s [affected.name]", + "You apply [trans] units of the solution to affected tissue in [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) diff --git a/code/modules/surgery/plastic_surgery.dm b/code/modules/surgery/plastic_surgery.dm index 43fa6078ed6..3a2050d8664 100644 --- a/code/modules/surgery/plastic_surgery.dm +++ b/code/modules/surgery/plastic_surgery.dm @@ -94,8 +94,8 @@ /datum/surgery_step/reshape_face/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/head/head = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, tearing skin on [target]'s face with [tool]!", - " Your hand slips, tearing skin on [target]'s face with [tool]!", + "[user]'s hand slips, tearing skin on [target]'s face with [tool]!", + "Your hand slips, tearing skin on [target]'s face with [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT ) target.apply_damage(10, BRUTE, head, sharp = TRUE) diff --git a/code/modules/surgery/robotics.dm b/code/modules/surgery/robotics.dm index 0a5658862a4..5c7f42e33cd 100644 --- a/code/modules/surgery/robotics.dm +++ b/code/modules/surgery/robotics.dm @@ -130,8 +130,8 @@ /datum/surgery_step/robotics/external/unscrew_hatch/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has opened the maintenance hatch on [target]'s [affected.name] with \the [tool].", - " You have opened the maintenance hatch on [target]'s [affected.name] with \the [tool].", + "[user] has opened the maintenance hatch on [target]'s [affected.name] with \the [tool].", + "You have opened the maintenance hatch on [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.open = ORGAN_SYNTHETIC_LOOSENED @@ -140,8 +140,8 @@ /datum/surgery_step/robotics/external/unscrew_hatch/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s [tool.name] slips, failing to unscrew [target]'s [affected.name].", - " Your [tool] slips, failing to unscrew [target]'s [affected.name].", + "[user]'s [tool.name] slips, failing to unscrew [target]'s [affected.name].", + "Your [tool] slips, failing to unscrew [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -168,8 +168,8 @@ /datum/surgery_step/robotics/external/open_hatch/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] opens the maintenance hatch on [target]'s [affected.name] with \the [tool].", - " You open the maintenance hatch on [target]'s [affected.name] with \the [tool].", + "[user] opens the maintenance hatch on [target]'s [affected.name] with \the [tool].", + "You open the maintenance hatch on [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.open = ORGAN_SYNTHETIC_OPEN @@ -178,8 +178,8 @@ /datum/surgery_step/robotics/external/open_hatch/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s [tool.name] slips, failing to open the hatch on [target]'s [affected.name].", - " Your [tool] slips, failing to open the hatch on [target]'s [affected.name].", + "[user]'s [tool.name] slips, failing to open the hatch on [target]'s [affected.name].", + "Your [tool] slips, failing to open the hatch on [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -206,8 +206,8 @@ /datum/surgery_step/robotics/external/close_hatch/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] closes and secures the hatch on [target]'s [affected.name] with \the [tool].", - " You close and secure the hatch on [target]'s [affected.name] with \the [tool].", + "[user] closes and secures the hatch on [target]'s [affected.name] with \the [tool].", + "You close and secure the hatch on [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) tool.play_tool_sound(target) @@ -217,8 +217,8 @@ /datum/surgery_step/robotics/external/close_hatch/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s [tool.name] slips, failing to close the hatch on [target]'s [affected.name].", - " Your [tool.name] slips, failing to close the hatch on [target]'s [affected.name].", + "[user]'s [tool.name] slips, failing to close the hatch on [target]'s [affected.name].", + "Your [tool.name] slips, failing to close the hatch on [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_RETRY @@ -269,8 +269,8 @@ /datum/surgery_step/robotics/external/repair/burn/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] finishes splicing cable into [target]'s [affected.name].", - " You finishes splicing new cable into [target]'s [affected.name].", + "[user] finishes splicing cable into [target]'s [affected.name].", + "You finishes splicing new cable into [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.heal_damage(0, rand(30, 50), 1, 1) @@ -282,8 +282,8 @@ /datum/surgery_step/robotics/external/repair/burn/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] causes a short circuit in [target]'s [affected.name]!", - " You cause a short circuit in [target]'s [affected.name]!", + "[user] causes a short circuit in [target]'s [affected.name]!", + "You cause a short circuit in [target]'s [affected.name]!", chat_message_type = MESSAGE_TYPE_COMBAT ) target.apply_damage(rand(5, 10), BURN, affected) @@ -315,8 +315,8 @@ /datum/surgery_step/robotics/external/repair/brute/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] finishes patching damage to [target]'s [affected.name] with \the [tool].", - " You finish patching damage to [target]'s [affected.name] with \the [tool].", + "[user] finishes patching damage to [target]'s [affected.name] with \the [tool].", + "You finish patching damage to [target]'s [affected.name] with \the [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.heal_damage(rand(30, 50), 0, 1, 1) @@ -393,8 +393,8 @@ if(I && I.damage) if(I.is_robotic()) user.visible_message( - " [user] repairs [target]'s [I.name] with [tool].", - " You repair [target]'s [I.name] with [tool].", + "[user] repairs [target]'s [I.name] with [tool].", + "You repair [target]'s [I.name] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) I.damage = 0 @@ -405,8 +405,8 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s hand slips, gumming up the mechanisms inside of [target]'s [affected.name] with \the [tool]!", - " Your hand slips, gumming up the mechanisms inside of [target]'s [affected.name] with \the [tool]!", + "[user]'s hand slips, gumming up the mechanisms inside of [target]'s [affected.name] with \the [tool]!", + "Your hand slips, gumming up the mechanisms inside of [target]'s [affected.name] with \the [tool]!", chat_message_type = MESSAGE_TYPE_COMBAT) target.adjustToxLoss(5) @@ -440,11 +440,11 @@ return SURGERY_BEGINSTEP_SKIP if(I.damage > (I.max_damage * 0.75)) - to_chat(user, " \The [I] is in no state to be transplanted.") + to_chat(user, "[I] is in no state to be transplanted.") return SURGERY_BEGINSTEP_SKIP if(target.get_int_organ(I)) - to_chat(user, " \The [target] already has [I].") + to_chat(user, "[target] already has [I].") return SURGERY_BEGINSTEP_SKIP user.visible_message( @@ -465,16 +465,16 @@ user.drop_item() I.insert(target) user.visible_message( - " [user] has reattached [target]'s [I].", - " You have reattached [target]'s [I].", + "[user] has reattached [target]'s [I].", + "You have reattached [target]'s [I].", chat_message_type = MESSAGE_TYPE_COMBAT ) return ..() /datum/surgery_step/robotics/manipulate_robotic_organs/implant/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user]'s hand slips, disconnecting \the [tool].", - " Your hand slips, disconnecting \the [tool].", + "[user]'s hand slips, disconnecting [tool].", + "Your hand slips, disconnecting [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -526,8 +526,8 @@ return SURGERY_STEP_CONTINUE user.visible_message( - " [user] has decoupled [target]'s [I] with \the [tool].", - " You have decoupled [target]'s [I] with \the [tool].", + "[user] has decoupled [target]'s [I] with [tool].", + "You have decoupled [target]'s [I] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -544,8 +544,8 @@ /datum/surgery_step/robotics/manipulate_robotic_organs/extract/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user]'s hand slips, disconnecting \the [tool].", - " Your hand slips, disconnecting \the [tool].", + "[user]'s hand slips, disconnecting [tool].", + "Your hand slips, disconnecting [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -558,7 +558,7 @@ /datum/surgery_step/robotics/manipulate_robotic_organs/install_mmi/begin_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) if(target_zone != BODY_ZONE_CHEST) - to_chat(user, " You must target the chest cavity.") + to_chat(user, "You must target the chest cavity.") return SURGERY_BEGINSTEP_SKIP @@ -605,8 +605,8 @@ /datum/surgery_step/robotics/manipulate_robotic_organs/install_mmi/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has installed \the [tool] into [target]'s [affected.name].", - " You have installed \the [tool] into [target]'s [affected.name].", + "[user] has installed [tool] into [target]'s [affected.name].", + "You have installed [tool] into [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -618,8 +618,8 @@ /datum/surgery_step/robotics/manipulate_robotic_organs/install_mmi/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user]'s hand slips!", - " Your hand slips!", + "[user]'s hand slips!", + "Your hand slips!", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -636,8 +636,8 @@ /datum/surgery_step/robotics/external/amputate/begin_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - "[user] starts to decouple [target]'s [affected.name] with \the [tool].", - "You start to decouple [target]'s [affected.name] with \the [tool].", + "[user] starts to decouple [target]'s [affected.name] with [tool].", + "You start to decouple [target]'s [affected.name] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -647,8 +647,8 @@ /datum/surgery_step/robotics/external/amputate/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user] has decoupled [target]'s [affected.name] with \the [tool].", - " You have decoupled [target]'s [affected.name] with \the [tool].", + "[user] has decoupled [target]'s [affected.name] with [tool].", + "You have decoupled [target]'s [affected.name] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) @@ -664,8 +664,8 @@ /datum/surgery_step/robotics/external/amputate/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message( - " [user]'s hand slips!", - " Your hand slips!", + "[user]'s hand slips!", + "Your hand slips!", chat_message_type = MESSAGE_TYPE_COMBAT ) return SURGERY_STEP_RETRY @@ -698,8 +698,8 @@ target.updatehealth() target.UpdateDamageIcon() user.visible_message( - " [user] reprograms the appearance of [target]'s [affected.name] with [tool].", - " You reprogram the appearance of [target]'s [affected.name] with [tool].", + "[user] reprograms the appearance of [target]'s [affected.name] with [tool].", + "You reprogram the appearance of [target]'s [affected.name] with [tool].", chat_message_type = MESSAGE_TYPE_COMBAT ) affected.open = ORGAN_CLOSED @@ -708,8 +708,8 @@ /datum/surgery_step/robotics/external/customize_appearance/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool, datum/surgery/surgery) var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message( - " [user]'s [tool.name] slips, failing to reprogram [target]'s [affected.name].", - " Your [tool.name] slips, failing to reprogram [target]'s [affected.name].", + "[user]'s [tool.name] slips, failing to reprogram [target]'s [affected.name].", + "Your [tool.name] slips, failing to reprogram [target]'s [affected.name].", chat_message_type = MESSAGE_TYPE_COMBAT) return SURGERY_STEP_RETRY