diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index 8a3638eedbb..13c58c84298 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -479,7 +479,7 @@ if(deathTick < 4) deathTick += 1 else - owner.visible_message("[owner]'s soul is absorbed into the rod, releaving the previous snake of it's duty.") + owner.visible_message("[owner]'s soul is absorbed into the rod, relieving the previous snake of its duty.") var/mob/living/simple_animal/hostile/retaliate/poison/snake/healSnake = new(owner.loc) var/list/chems = list("bicaridine", "salbutamol", "kelotane", "antitoxin") healSnake.poison_type = pick(chems) diff --git a/code/datums/status_effects/gas.dm b/code/datums/status_effects/gas.dm index 5f9a9d131e9..dfe0a1d94e1 100644 --- a/code/datums/status_effects/gas.dm +++ b/code/datums/status_effects/gas.dm @@ -9,7 +9,7 @@ /obj/screen/alert/status_effect/freon name = "Frozen Solid" - desc = "You're frozen inside of an ice cube, and cannot move! You can still do stuff, like shooting. Resist out of the cube!" + desc = "You're frozen inside an ice cube, and cannot move! You can still do stuff, like shooting. Resist out of the cube!" icon_state = "frozen" /datum/status_effect/freon/on_apply() diff --git a/code/game/objects/items/circuitboards/machine_circuitboards.dm b/code/game/objects/items/circuitboards/machine_circuitboards.dm index e0bac9dea50..d308ff9d3fe 100644 --- a/code/game/objects/items/circuitboards/machine_circuitboards.dm +++ b/code/game/objects/items/circuitboards/machine_circuitboards.dm @@ -573,7 +573,7 @@ /obj/item/circuitboard/machine/tesla_coil name = "Tesla Controller (Machine Board)" - desc = "You can use a screwdriver to switch between Research and Power Generation" + desc = "You can use a screwdriver to switch between Research and Power Generation." build_path = /obj/machinery/power/tesla_coil req_components = list(/obj/item/stock_parts/capacitor = 1) needs_anchored = FALSE diff --git a/code/game/objects/items/control_wand.dm b/code/game/objects/items/control_wand.dm index c9dc8c6c167..1e4d88a55e5 100644 --- a/code/game/objects/items/control_wand.dm +++ b/code/game/objects/items/control_wand.dm @@ -93,7 +93,7 @@ region_access = 3 /obj/item/door_remote/civillian - name = "civillian door remote" + name = "civilian door remote" icon_state = "gangtool-white" region_access = 1 diff --git a/code/game/objects/items/dna_injector.dm b/code/game/objects/items/dna_injector.dm index ebae70ca052..502cd33e55e 100644 --- a/code/game/objects/items/dna_injector.dm +++ b/code/game/objects/items/dna_injector.dm @@ -130,7 +130,7 @@ //////////////////////////////////// /obj/item/dnainjector/anticough name = "\improper DNA injector (Anti-Cough)" - desc = "Will stop that aweful noise." + desc = "Will stop that awful noise." remove_mutations_static = list(COUGH) /obj/item/dnainjector/coughmut diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index 975908106e9..dce95057ca0 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -195,7 +195,7 @@ /obj/item/borg/upgrade/tboh name = "janitor cyborg trash bag of holding" - desc = "A trash bag of holding replace for the janiborgs standard trash bag." + desc = "A trash bag of holding replacement for the janiborg's standard trash bag." icon_state = "cyborg_upgrade3" require_module = 1 module_type = /obj/item/robot_module/janitor @@ -222,7 +222,7 @@ /obj/item/borg/upgrade/amop name = "janitor cyborg advanced mop" - desc = "An advanced mop replacement from the janiborgs standard mop." + desc = "An advanced mop replacement for the janiborg's standard mop." icon_state = "cyborg_upgrade3" require_module = 1 module_type = /obj/item/robot_module/janitor @@ -460,7 +460,7 @@ /obj/item/borg/upgrade/defib name = "medical cyborg defibrillator" - desc = "An upgrade to the Medical module, installing a builtin \ + desc = "An upgrade to the Medical module, installing a built-in \ defibrillator, for on the scene revival." icon_state = "cyborg_upgrade3" require_module = 1 diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index ba45d8819c2..3e7968a9d71 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -141,7 +141,7 @@ var/itercount = 0 while(DT.density || istype(DT.loc,/area/shuttle)) // Extend towards the center of the map, trying to look for a better place to arrive if (itercount++ >= 100) - log_game("SPACE Z-TRANSIT ERROR: Could not not find a safe place to land [A] within 100 iterations.") + log_game("SPACE Z-TRANSIT ERROR: Could not find a safe place to land [A] within 100 iterations.") break if (tx < 128) tx++ diff --git a/code/modules/VR/vr_sleeper.dm b/code/modules/VR/vr_sleeper.dm index c36f0f040bd..eed6f9b3ae2 100644 --- a/code/modules/VR/vr_sleeper.dm +++ b/code/modules/VR/vr_sleeper.dm @@ -95,7 +95,7 @@ SStgui.close_user_uis(occupant, src) vr_human.real_mind = human_occupant.mind vr_human.ckey = human_occupant.ckey - to_chat(vr_human, "Transfer successful! you are now playing as [vr_human] in VR!") + to_chat(vr_human, "Transfer successful! You are now playing as [vr_human] in VR!") else if(allow_creating_vr_humans) to_chat(occupant, "Virtual avatar not found, attempting to create one...") @@ -104,7 +104,7 @@ if(T) SStgui.close_user_uis(occupant, src) build_virtual_human(occupant, T, V.vr_outfit) - to_chat(vr_human, "Transfer successful! you are now playing as [vr_human] in VR!") + to_chat(vr_human, "Transfer successful! You are now playing as [vr_human] in VR!") else to_chat(occupant, "Virtual world misconfigured, aborting transfer") else diff --git a/code/modules/antagonists/cult/cult_comms.dm b/code/modules/antagonists/cult/cult_comms.dm index f129ab90467..e2f57a82e35 100644 --- a/code/modules/antagonists/cult/cult_comms.dm +++ b/code/modules/antagonists/cult/cult_comms.dm @@ -79,7 +79,7 @@ return ..() /datum/action/innate/cult/mastervote/Activate() - var/choice = alert(owner, "The mantle of leadership is a heavy. Success in this role requires an expert level of communication and experience. Are you sure?",, "Yes", "No") + var/choice = alert(owner, "The mantle of leadership is heavy. Success in this role requires an expert level of communication and experience. Are you sure?",, "Yes", "No") if(choice == "Yes" && IsAvailable()) var/datum/antagonist/cult/C = owner.mind.has_antag_datum(/datum/antagonist/cult,TRUE) pollCultists(owner,C.cult_team) diff --git a/code/modules/antagonists/cult/cult_items.dm b/code/modules/antagonists/cult/cult_items.dm index fa9bc509277..11757c975b6 100644 --- a/code/modules/antagonists/cult/cult_items.dm +++ b/code/modules/antagonists/cult/cult_items.dm @@ -589,7 +589,7 @@ /obj/item/flashlight/flare/culttorch name = "void torch" - desc = "Used by veteran cultists to instantly transport items to their needful bretheren." + desc = "Used by veteran cultists to instantly transport items to their needful brethren." w_class = WEIGHT_CLASS_SMALL brightness_on = 1 icon_state = "torch" diff --git a/code/modules/cargo/bounties/assistant.dm b/code/modules/cargo/bounties/assistant.dm index ca476ba4c40..8f617eda39b 100644 --- a/code/modules/cargo/bounties/assistant.dm +++ b/code/modules/cargo/bounties/assistant.dm @@ -13,7 +13,7 @@ /datum/bounty/item/assistant/skateboard name = "Skateboard" - description = "Nanotrasen has determined walking to be a wasteful. Ship a skateboard to CentCom to speed operations up." + description = "Nanotrasen has determined walking to be wasteful. Ship a skateboard to CentCom to speed operations up." reward = 900 // the tony hawk wanted_types = list(/obj/vehicle/ridden/scooter/skateboard) @@ -218,7 +218,7 @@ /datum/bounty/item/assistant/bonfire name = "Lit Bonfire" - description = "Space heaters are malfunctioning and the cargo crew of Central Command is starting to feel cold. Ship a lit bonfire to warm them up." + description = "Space heaters are malfunctioning and the cargo crew of Central Command is starting to feel cold. Ship a lit bonfire to warm them up." reward = 5000 wanted_types = list(/obj/structure/bonfire) diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm index 55c5c458750..3c2844ca475 100644 --- a/code/modules/cargo/packs.dm +++ b/code/modules/cargo/packs.dm @@ -460,7 +460,7 @@ /datum/supply_pack/security/armory/laserarmor name = "Reflector Vest Crate" - desc = "Contains two vests of highly reflective material. Each armor peice diffuses a laser's energy by over half, as well as offering a good chance to reflect the laser entirely. Requires Armory access to open." + desc = "Contains two vests of highly reflective material. Each armor piece diffuses a laser's energy by over half, as well as offering a good chance to reflect the laser entirely. Requires Armory access to open." cost = 2000 contains = list(/obj/item/clothing/suit/armor/laserproof, /obj/item/clothing/suit/armor/laserproof) @@ -1078,7 +1078,7 @@ /datum/supply_pack/medical/defibs name = "Defibrillator Crate" - desc = "Contains two defibrillators for bringing the recently-deceased back to life." + desc = "Contains two defibrillators for bringing the recently deceased back to life." cost = 2500 contains = list(/obj/item/defibrillator/loaded, /obj/item/defibrillator/loaded) @@ -1162,7 +1162,7 @@ /datum/supply_pack/science/robotics/mecha_odysseus name = "Circuit Crate (Odysseus)" - desc = "Ever wanted to build your own giant medical robot? Well now you can! Contains the Odysseus main control board and Odysseus peripherals board. Requires Robotics access to open." + desc = "Ever wanted to build your own giant medical robot? Well, now you can! Contains the Odysseus main control board and Odysseus peripherals board. Requires Robotics access to open." cost = 2500 access = ACCESS_ROBOTICS contains = list(/obj/item/circuitboard/mecha/odysseus/peripherals, @@ -1747,7 +1747,7 @@ /obj/item/storage/pill_bottle/lsd, /obj/item/storage/pill_bottle/aranesp, /obj/item/storage/pill_bottle/stimulant, - /obj/item/toy/cards/deck/syndicate, + /obj/item/toy/cards/deck/syndicate, /obj/item/reagent_containers/food/drinks/bottle/absinthe, /obj/item/clothing/under/syndicate/tacticool, /obj/item/storage/fancy/cigarettes/cigpack_syndicate, diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index c81505d8e8e..bd28b621b55 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -27,7 +27,7 @@ armor = list("melee" = 40, "bullet" = 30, "laser" = 25, "energy" = 25, "bomb" = 50, "bio" = 30, "rad" = 30, "fire" = 90, "acid" = 50) /obj/item/clothing/shoes/sandal - desc = "A pair of rather plain, wooden sandals." + desc = "A pair of rather plain wooden sandals." name = "sandals" icon_state = "wizard" strip_delay = 50 @@ -91,7 +91,7 @@ /obj/item/clothing/shoes/clown_shoes/jester name = "jester shoes" - desc = "A court jesters shoes, updated with modern squeaking technology." + desc = "A court jester's shoes, updated with modern squeaking technology." icon_state = "jester_shoes" /obj/item/clothing/shoes/jackboots diff --git a/code/modules/events/pirates.dm b/code/modules/events/pirates.dm index 76c51aabcdd..7288d9e3e07 100644 --- a/code/modules/events/pirates.dm +++ b/code/modules/events/pirates.dm @@ -47,7 +47,7 @@ paid_off = TRUE return else - priority_announce("Trying to cheat us ? You'll regret this!",sender_override = ship_name) + priority_announce("Trying to cheat us? You'll regret this!",sender_override = ship_name) if(!shuttle_spawned) spawn_shuttle() @@ -60,7 +60,7 @@ /datum/round_event/pirates/proc/spawn_shuttle() shuttle_spawned = TRUE - var/list/candidates = pollGhostCandidates("Do you wish to be considered for pirate crew ?", ROLE_TRAITOR) + var/list/candidates = pollGhostCandidates("Do you wish to be considered for pirate crew?", ROLE_TRAITOR) shuffle_inplace(candidates) var/datum/map_template/shuttle/pirate/default/ship = new @@ -120,12 +120,12 @@ gps.tracking = TRUE active = TRUE to_chat(user,"You toggle [src] [active ? "on":"off"].") - to_chat(user,"The scrambling signal can be now tracked by gps.") + to_chat(user,"The scrambling signal can be now tracked by GPS.") START_PROCESSING(SSobj,src) /obj/machinery/shuttle_scrambler/interact(mob/user) if(!active) - if(alert(user, "Turning the scrambler on will make the shuttle trackable by GPS. Are you sure you want to do it ?", "Scrambler", "Yes", "Cancel") == "Cancel") + if(alert(user, "Turning the scrambler on will make the shuttle trackable by GPS. Are you sure you want to do it?", "Scrambler", "Yes", "Cancel") == "Cancel") return if(active || !user.canUseTopic(src)) return diff --git a/code/modules/events/spacevine.dm b/code/modules/events/spacevine.dm index 0d1fb7e7d84..966d5cc0d80 100644 --- a/code/modules/events/spacevine.dm +++ b/code/modules/events/spacevine.dm @@ -92,7 +92,7 @@ if(issilicon(crosser)) return if(prob(severity) && istype(crosser) && !isvineimmune(crosser)) - to_chat(crosser, "You accidently touch the vine and feel a strange sensation.") + to_chat(crosser, "You accidentally touch the vine and feel a strange sensation.") crosser.adjustToxLoss(5) /datum/spacevine_mutation/toxicity/on_eat(obj/structure/spacevine/holder, mob/living/eater) diff --git a/strings/names/megacarp1.txt b/strings/names/megacarp1.txt index e214c4cc01f..881cb7a80ba 100644 --- a/strings/names/megacarp1.txt +++ b/strings/names/megacarp1.txt @@ -33,7 +33,7 @@ Deep Blue Quick Slow Beloved -Agressive +Aggressive Angry Bewildered Clumsy