From 4bcd3cdc55ec1cc916db450a94f7a10a2a647a08 Mon Sep 17 00:00:00 2001 From: swindly Date: Mon, 19 Nov 2018 17:56:59 -0500 Subject: [PATCH] fixes word crimes --- code/datums/martial/mushpunch.dm | 2 +- code/datums/shuttles.dm | 2 +- code/game/machinery/camera/camera.dm | 4 ++-- code/game/machinery/computer/communications.dm | 2 +- code/game/machinery/computer/dna_console.dm | 2 +- code/game/machinery/syndicatebomb.dm | 2 +- code/game/objects/items/stacks/sheets/sheet_types.dm | 2 +- code/game/objects/items/storage/boxes.dm | 2 +- code/game/objects/structures/showcase.dm | 2 +- code/modules/antagonists/cult/blood_magic.dm | 2 +- code/modules/assembly/flash.dm | 2 +- code/modules/awaymissions/mission_code/caves.dm | 2 +- code/modules/awaymissions/mission_code/wildwest.dm | 2 +- code/modules/cargo/supplypod_beacon.dm | 2 +- code/modules/mining/equipment/kinetic_crusher.dm | 2 +- code/modules/mining/lavaland/necropolis_chests.dm | 6 +++--- code/modules/mob/living/brain/brain_item.dm | 2 +- code/modules/mob/living/simple_animal/hostile/bees.dm | 2 +- code/modules/power/rtg.dm | 2 +- code/modules/reagents/chemistry/reagents/other_reagents.dm | 2 +- code/modules/research/designs/AI_module_designs.dm | 2 +- code/modules/research/xenobiology/xenobiology.dm | 2 +- code/modules/spells/spell_types/hivemind.dm | 2 +- 23 files changed, 26 insertions(+), 26 deletions(-) diff --git a/code/datums/martial/mushpunch.dm b/code/datums/martial/mushpunch.dm index e38b764ad81..a4c02fd19a6 100644 --- a/code/datums/martial/mushpunch.dm +++ b/code/datums/martial/mushpunch.dm @@ -22,7 +22,7 @@ /obj/item/mushpunch name = "odd mushroom" - desc = "Sapienza Ophioglossoides:An odd mushroom from the flesh of a mushroom person. it has apparently retained some innate power of it's owner, as it quivers with barely-contained POWER!" + desc = "Sapienza Ophioglossoides:An odd mushroom from the flesh of a mushroom person. It has apparently retained some innate power of its owner, as it quivers with barely-contained POWER!" icon = 'icons/obj/hydroponics/seeds.dmi' icon_state = "mycelium-angel" diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index 956d354125b..b3919979a12 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -385,7 +385,7 @@ /datum/map_template/shuttle/ferry/fancy suffix = "fancy" name = "fancy transport ferry" - description = "At some point, someone upgraded the ferry to have fancier flooring... and less seats." + description = "At some point, someone upgraded the ferry to have fancier flooring... and fewer seats." /datum/map_template/shuttle/whiteship/box suffix = "box" diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 6d97e622233..3c5a0740e91 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -118,9 +118,9 @@ to_chat(user, "It can be upgraded with a proximity sensor.") if(!status) - to_chat(user, "Its current deactivated.") + to_chat(user, "It's currently deactivated.") if(!panel_open && powered()) - to_chat(user, "You'll need to open it's maintenance panel with a screwdriver to turn it back on.") + to_chat(user, "You'll need to open its maintenance panel with a screwdriver to turn it back on.") if(panel_open) to_chat(user, "Its maintenance panel is currently open.") if(!status && powered()) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index b6a45cc0ed2..1047c6f17a9 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -711,7 +711,7 @@ if(!input || !user.canUseTopic(src)) return SScommunications.make_announcement(user, is_silicon, input) - deadchat_broadcast("[user.real_name] made an priority announcement from [get_area_name(usr, TRUE)].", user) + deadchat_broadcast("[user.real_name] made a priority announcement from [get_area_name(usr, TRUE)].", user) /obj/machinery/computer/communications/proc/post_status(command, data1, data2) diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm index 978b9302cc9..2902c463093 100644 --- a/code/game/machinery/computer/dna_console.dm +++ b/code/game/machinery/computer/dna_console.dm @@ -346,7 +346,7 @@ var/can_add = max(min(REJUVENATORS_MAX - potassiodide_amount, REJUVENATORS_INJECT), 0) viable_occupant.reagents.add_reagent("potass_iodide", can_add) if("setbufferlabel") - var/text = sanitize(input(usr, "Input a new label:", "Input an Text", null) as text|null) + var/text = sanitize(input(usr, "Input a new label:", "Input a Text", null) as text|null) if(num && text) num = CLAMP(num, 1, NUMBER_OF_BUFFERS) var/list/buffer_slot = buffer[num] diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm index 05bdea0cb4f..458c1a59f5c 100644 --- a/code/game/machinery/syndicatebomb.dm +++ b/code/game/machinery/syndicatebomb.dm @@ -293,7 +293,7 @@ /obj/item/bombcore/training name = "dummy payload" - desc = "A Nanotrasen replica of a syndicate payload. Its not intended to explode but to announce that it WOULD have exploded, then rewire itself to allow for more training." + desc = "A Nanotrasen replica of a syndicate payload. It's not intended to explode but to announce that it WOULD have exploded, then rewire itself to allow for more training." var/defusals = 0 var/attempts = 0 diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 40b414bef6e..93fbabccc7d 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -346,7 +346,7 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \ var/atom/droploc = drop_location() if(use(1)) playsound(I, 'sound/items/bikehorn.ogg', 50, 1, -1) - to_chat(user, "You stamp the cardboard! Its a clown box! Honk!") + to_chat(user, "You stamp the cardboard! It's a clown box! Honk!") if (amount >= 0) new/obj/item/storage/box/clown(droploc) //bugfix else diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index 8181f9da366..92a5a4d2797 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -696,7 +696,7 @@ if(!user.temporarilyRemoveItemFromInventory(I)) return qdel(I) - to_chat(user, "You add some wheels to the [src]! You've got an honkbot assembly now! Honk!") + to_chat(user, "You add some wheels to the [src]! You've got a honkbot assembly now! Honk!") var/obj/item/bot_assembly/honkbot/A = new qdel(src) user.put_in_hands(A) diff --git a/code/game/objects/structures/showcase.dm b/code/game/objects/structures/showcase.dm index 470be097f33..eed2ff4ed39 100644 --- a/code/game/objects/structures/showcase.dm +++ b/code/game/objects/structures/showcase.dm @@ -64,7 +64,7 @@ /obj/structure/showcase/mecha/ripley name = "construction mech exhibit" - desc = "A stand with an retired construction mech bolted to it. The clamps are rated at 9300PSI. It seems to be falling apart." + desc = "A stand with a retired construction mech bolted to it. The clamps are rated at 9300PSI. It seems to be falling apart." icon = 'icons/mecha/mecha.dmi' icon_state = "firefighter" diff --git a/code/modules/antagonists/cult/blood_magic.dm b/code/modules/antagonists/cult/blood_magic.dm index 52ae1d620fb..4ae1f5fd994 100644 --- a/code/modules/antagonists/cult/blood_magic.dm +++ b/code/modules/antagonists/cult/blood_magic.dm @@ -432,7 +432,7 @@ target.visible_message("[L] starts to glow in a halo of light!", \ "A feeling of warmth washes over you, rays of holy light surround your body and protect you from the flash of light!") else - to_chat(user, "In an brilliant flash of red, [L] falls to the ground!") + to_chat(user, "In a brilliant flash of red, [L] falls to the ground!") L.Paralyze(160) L.flash_act(1,1) if(issilicon(target)) diff --git a/code/modules/assembly/flash.dm b/code/modules/assembly/flash.dm index 0eab4b628ff..0ceb89c5a50 100644 --- a/code/modules/assembly/flash.dm +++ b/code/modules/assembly/flash.dm @@ -20,7 +20,7 @@ /obj/item/assembly/flash/suicide_act(mob/living/user) if (crit_fail) - user.visible_message("[user] raises \the [src] up to [user.p_their()] eyes and activates it ... but its burnt out!") + user.visible_message("[user] raises \the [src] up to [user.p_their()] eyes and activates it ... but it's burnt out!") return SHAME else if (user.eye_blind) user.visible_message("[user] raises \the [src] up to [user.p_their()] eyes and activates it ... but [user.p_theyre()] blind!") diff --git a/code/modules/awaymissions/mission_code/caves.dm b/code/modules/awaymissions/mission_code/caves.dm index fd2735678d0..13b526fddb5 100644 --- a/code/modules/awaymissions/mission_code/caves.dm +++ b/code/modules/awaymissions/mission_code/caves.dm @@ -46,7 +46,7 @@ /obj/item/paper/fluff/awaymissions/caves/shipment_notice name = "shipment notice" - info = "
We were suppose to get a shipment of these special laser rifles and a couple 'nades to help combat the wildlife down here, but its been weeks since we last heard from the caravan carrying the shit down here. At this point we can only assume they fell victim to one of the monster nests or the dumbasses managed to trip into the lava. So much for that shipment, I guess.
" + info = "
We were supposed to get a shipment of these special laser rifles and a couple 'nades to help combat the wildlife down here, but it's been weeks since we last heard from the caravan carrying the shit down here. At this point we can only assume they fell victim to one of the monster nests or the dumbasses managed to trip into the lava. So much for that shipment, I guess.
" /obj/item/paper/fluff/awaymissions/caves/safety_notice name = "safety notice" diff --git a/code/modules/awaymissions/mission_code/wildwest.dm b/code/modules/awaymissions/mission_code/wildwest.dm index 4971d82053c..beb6804b6e6 100644 --- a/code/modules/awaymissions/mission_code/wildwest.dm +++ b/code/modules/awaymissions/mission_code/wildwest.dm @@ -47,7 +47,7 @@ /obj/item/paper/fluff/awaymissions/wildwest/journal/page7 name = "Planer Sauls' Journal: Page 7" - info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now its just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...its calling to me." + info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now it's just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...it's calling to me." /obj/item/paper/fluff/awaymissions/wildwest/journal/page8 name = "Planer Saul's Journal: Page 8" diff --git a/code/modules/cargo/supplypod_beacon.dm b/code/modules/cargo/supplypod_beacon.dm index 3c82722f692..12fc0aeb74b 100644 --- a/code/modules/cargo/supplypod_beacon.dm +++ b/code/modules/cargo/supplypod_beacon.dm @@ -47,7 +47,7 @@ /obj/item/supplypod_beacon/examine(user) ..() if(!express_console) - to_chat(user, "[src] is not currently linked to a Express Supply console.") + to_chat(user, "[src] is not currently linked to an Express Supply console.") else to_chat(user, "Alt-click to unlink it from the Express Supply console.") diff --git a/code/modules/mining/equipment/kinetic_crusher.dm b/code/modules/mining/equipment/kinetic_crusher.dm index dba6965b2f7..6333d9d13cd 100644 --- a/code/modules/mining/equipment/kinetic_crusher.dm +++ b/code/modules/mining/equipment/kinetic_crusher.dm @@ -6,7 +6,7 @@ lefthand_file = 'icons/mob/inhands/weapons/hammers_lefthand.dmi' righthand_file = 'icons/mob/inhands/weapons/hammers_righthand.dmi' name = "proto-kinetic crusher" - desc = "An early design of the proto-kinetic accelerator, it is little more than an combination of various mining tools cobbled together, forming a high-tech club. \ + desc = "An early design of the proto-kinetic accelerator, it is little more than a combination of various mining tools cobbled together, forming a high-tech club. \ While it is an effective mining tool, it did little to aid any but the most skilled and/or suicidal miners against local fauna." force = 20 //As much as a bone spear, but this is significantly more annoying to carry around due to requiring the use of both hands at all times w_class = WEIGHT_CLASS_BULKY diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index b76ae7fffa2..bf59012f6f8 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -144,7 +144,7 @@ //Rod of Asclepius /obj/item/rod_of_asclepius name = "Rod of Asclepius" - desc = "A wooden rod about the size of your forearm with a snake carved around it, winding it's way up the sides of the rod. Something about it seems to inspire in you the responsibilty and duty to help others." + desc = "A wooden rod about the size of your forearm with a snake carved around it, winding its way up the sides of the rod. Something about it seems to inspire in you the responsibilty and duty to help others." icon = 'icons/obj/lavaland/artefacts.dmi' icon_state = "asclepius_dormant" var/activated = FALSE @@ -154,14 +154,14 @@ if(activated) return if(!iscarbon(user)) - to_chat(user, "The snake carving seems to come alive, if only for a moment, before returning to it's dormant state, almost as if it finds you incapable of holding it's oath.") + to_chat(user, "The snake carving seems to come alive, if only for a moment, before returning to its dormant state, almost as if it finds you incapable of holding its oath.") return var/mob/living/carbon/itemUser = user usedHand = itemUser.get_held_index_of_item(src) if(itemUser.has_status_effect(STATUS_EFFECT_HIPPOCRATIC_OATH)) to_chat(user, "You can't possibly handle the responsibility of more than one rod!") return - var/failText = "The snake seems unsatisfied with your incomplete oath and returns to it's previous place on the rod, returning to its dormant, wooden state. You must stand still while completing your oath!" + var/failText = "The snake seems unsatisfied with your incomplete oath and returns to its previous place on the rod, returning to its dormant, wooden state. You must stand still while completing your oath!" to_chat(itemUser, "The wooden snake that was carved into the rod seems to suddenly come alive and begins to slither down your arm! The compulsion to help others grows abnormally strong...") if(do_after(itemUser, 40, target = itemUser)) itemUser.say("I swear to fulfill, to the best of my ability and judgment, this covenant:", forced = "hippocratic oath") diff --git a/code/modules/mob/living/brain/brain_item.dm b/code/modules/mob/living/brain/brain_item.dm index c155145604e..fff8272044c 100644 --- a/code/modules/mob/living/brain/brain_item.dm +++ b/code/modules/mob/living/brain/brain_item.dm @@ -108,7 +108,7 @@ to_chat(user, "You failed to pour [O] onto [src]!") return - user.visible_message("[user] pours the contents of [O] onto [src], causing it to reform it's original shape and turn a slightly brighter shade of pink.", "You pour the contents of [O] onto [src], causing it to reform it's original shape and turn a slightly brighter shade of pink.") + user.visible_message("[user] pours the contents of [O] onto [src], causing it to reform its original shape and turn a slightly brighter shade of pink.", "You pour the contents of [O] onto [src], causing it to reform its original shape and turn a slightly brighter shade of pink.") damaged_brain = FALSE //heal the superficial damage. O.reagents.clear_reagents() diff --git a/code/modules/mob/living/simple_animal/hostile/bees.dm b/code/modules/mob/living/simple_animal/hostile/bees.dm index 7b465a97280..b13f377c5d1 100644 --- a/code/modules/mob/living/simple_animal/hostile/bees.dm +++ b/code/modules/mob/living/simple_animal/hostile/bees.dm @@ -272,7 +272,7 @@ if(R && S.reagents.has_reagent(R.id, 5)) S.reagents.remove_reagent(R.id,5) queen.assign_reagent(R) - user.visible_message("[user] injects [src]'s genome with [R.name], mutating it's DNA!","You inject [src]'s genome with [R.name], mutating it's DNA!") + user.visible_message("[user] injects [src]'s genome with [R.name], mutating its DNA!","You inject [src]'s genome with [R.name], mutating its DNA!") name = queen.name else to_chat(user, "You don't have enough units of that chemical to modify the bee's DNA!") diff --git a/code/modules/power/rtg.dm b/code/modules/power/rtg.dm index 0280e8c470d..a6808736421 100644 --- a/code/modules/power/rtg.dm +++ b/code/modules/power/rtg.dm @@ -72,7 +72,7 @@ if(going_kaboom) return going_kaboom = TRUE - visible_message("\The [src] lets out an shower of sparks as it starts to lose stability!",\ + visible_message("\The [src] lets out a shower of sparks as it starts to lose stability!",\ "You hear a loud electrical crack!") playsound(src.loc, 'sound/magic/lightningshock.ogg', 100, 1, extrarange = 5) tesla_zap(src, 5, power_gen * 0.05) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index a3aa7decd07..a0267ee0bb0 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -756,7 +756,7 @@ /datum/reagent/carbon name = "Carbon" id = "carbon" - description = "A crumbly black solid that, while unexciting on an physical level, forms the base of all known life. Kind of a big deal." + description = "A crumbly black solid that, while unexciting on a physical level, forms the base of all known life. Kind of a big deal." reagent_state = SOLID color = "#1C1300" // rgb: 30, 20, 0 taste_description = "sour chalk" diff --git a/code/modules/research/designs/AI_module_designs.dm b/code/modules/research/designs/AI_module_designs.dm index 26b0a913539..8dadaa4c8e0 100644 --- a/code/modules/research/designs/AI_module_designs.dm +++ b/code/modules/research/designs/AI_module_designs.dm @@ -130,7 +130,7 @@ /datum/design/board/overlord_module name = "Core Module Design (Overlord)" - desc = "Allows for the construction of a Overlord AI Module." + desc = "Allows for the construction of an Overlord AI Module." id = "overlord_module" materials = list(MAT_GLASS = 1000, MAT_DIAMOND = 2000) build_path = /obj/item/aiModule/core/full/overlord diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index 1f326120b13..3f1280356c8 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -58,7 +58,7 @@ to_chat(user, "The slime is dead!") return if(!M.is_adult) - to_chat(user, "The slime must be an adult to cross it's core!") + to_chat(user, "The slime must be an adult to cross its core!") return if(M.effectmod && M.effectmod != effectmod) to_chat(user, "The slime is already being crossed with a different extract!") diff --git a/code/modules/spells/spell_types/hivemind.dm b/code/modules/spells/spell_types/hivemind.dm index 1aa560575bd..8242ea37616 100644 --- a/code/modules/spells/spell_types/hivemind.dm +++ b/code/modules/spells/spell_types/hivemind.dm @@ -447,7 +447,7 @@ if(power < 10 || target.z != user.z) to_chat(user, "We are too far away from [target.name] to affect them!") return - to_chat(user, "We succesfuly distort reality surrounding [target.name]!") + to_chat(user, "We successfully distort reality surrounding [target.name]!") switch(hive.hive_size) if(5 to 9) if(10 to 14)