diff --git a/code/controllers/subsystem/blackmarket.dm b/code/controllers/subsystem/blackmarket.dm index 58fad562d7a..2905453280d 100644 --- a/code/controllers/subsystem/blackmarket.dm +++ b/code/controllers/subsystem/blackmarket.dm @@ -5,8 +5,8 @@ SUBSYSTEM_DEF(blackmarket) /// Descriptions for each shipping methods. var/shipping_method_descriptions = list( - SHIPPING_METHOD_LAUNCH="Launches the item at the station from space, cheap but you might not recieve your item at all.", - SHIPPING_METHOD_LTSRBT="Long-To-Short-Range-Bluespace-Transceiver, a machine that recieves items outside the station and then teleports them to the location of the uplink.", + SHIPPING_METHOD_LAUNCH="Launches the item at the station from space, cheap but you might not receive your item at all.", + SHIPPING_METHOD_LTSRBT="Long-To-Short-Range-Bluespace-Transceiver, a machine that receives items outside the station and then teleports them to the location of the uplink.", SHIPPING_METHOD_TELEPORT="Teleports the item in a random area in the station, you get 60 seconds to get there first though." ) diff --git a/code/datums/components/_component.dm b/code/datums/components/_component.dm index 80ddbe841b0..2fd648f3483 100644 --- a/code/datums/components/_component.dm +++ b/code/datums/components/_component.dm @@ -163,7 +163,7 @@ * Register to listen for a signal from the passed in target * * This sets up a listening relationship such that when the target object emits a signal - * the source datum this proc is called upon, will recieve a callback to the given proctype + * the source datum this proc is called upon, will receive a callback to the given proctype * Return values from procs registered must be a bitfield * * Arguments: diff --git a/code/datums/holocall.dm b/code/datums/holocall.dm index f68be24fd58..3f113d02ecf 100644 --- a/code/datums/holocall.dm +++ b/code/datums/holocall.dm @@ -32,7 +32,7 @@ var/datum/action/innate/end_holocall/hangup //hangup action var/call_start_time - var/head_call = FALSE //calls from a head of staff autoconnect, if the recieving pad is not secure. + var/head_call = FALSE //calls from a head of staff autoconnect, if the receiving pad is not secure. //creates a holocall made by `caller` from `calling_pad` to `callees` /datum/holocall/New(mob/living/caller, obj/machinery/holopad/calling_pad, list/callees, elevated_access = FALSE) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 32edb03cdea..3e5854fe77f 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -67,7 +67,7 @@ var/list/learned_recipes //List of learned recipe TYPES. - ///List of skills the user has recieved a reward for. Should not be used to keep track of currently known skills. Lazy list because it shouldnt be filled often + ///List of skills the user has received a reward for. Should not be used to keep track of currently known skills. Lazy list because it shouldnt be filled often var/list/skills_rewarded ///Assoc list of skills. Use SKILL_LVL to access level, and SKILL_EXP to access skill's exp. var/list/known_skills = list() diff --git a/code/datums/mutations/sight.dm b/code/datums/mutations/sight.dm index 5f882d98297..47b112b7c9d 100644 --- a/code/datums/mutations/sight.dm +++ b/code/datums/mutations/sight.dm @@ -36,7 +36,7 @@ ///Thermal Vision lets you see mobs through walls /datum/mutation/human/thermal name = "Thermal Vision" - desc = "The user of this genome can visually percieve the unique human thermal signature." + desc = "The user of this genome can visually perceive the unique human thermal signature." quality = POSITIVE difficulty = 18 text_gain_indication = "You can see the heat rising off of your skin..." diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm index 278f1d11a9e..a311b15a81b 100644 --- a/code/game/objects/items/storage/uplink_kits.dm +++ b/code/game/objects/items/storage/uplink_kits.dm @@ -229,7 +229,7 @@
  1. Open the Syndicate Contract Uplink program.
  2. Here, you can accept a contract, and redeem your TC payments from completed contracts.
  3. -
  4. The payment number shown in brackets is the bonus you'll recieve when bringing your target alive. You recieve the +
  5. The payment number shown in brackets is the bonus you'll receive when bringing your target alive. You receive the other number regardless of if they were alive or dead.
  6. Contracts are completed by bringing the target to designated dropoff, calling for extraction, and putting them inside the pod.
  7. diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm index bb737969c23..5cb23a757f3 100644 --- a/code/game/objects/structures/displaycase.dm +++ b/code/game/objects/structures/displaycase.dm @@ -376,7 +376,7 @@ glass_fix = FALSE //Fixable with tools instead. ///The price of the item being sold. Altered by grab intent ID use. var/sale_price = 20 - ///The Account which will recieve payment for purchases. Set by the first ID to swipe the tray. + ///The Account which will receive payment for purchases. Set by the first ID to swipe the tray. var/datum/bank_account/payments_acc = null /obj/structure/displaycase/forsale/update_icon() //remind me to fix my shitcode later diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index ab6e1dcf160..1278c99d0f4 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -415,7 +415,7 @@ var/our_pressure = air_contents.return_pressure() var/our_temperature = air_contents.return_temperature() - ///function used to check the limit of the canisters and also set the amount of damage that the canister can recieve, if the heat and pressure are way higher than the limit the more damage will be done + ///function used to check the limit of the canisters and also set the amount of damage that the canister can receive, if the heat and pressure are way higher than the limit the more damage will be done if(our_temperature > heat_limit || our_pressure > pressure_limit) take_damage(clamp((our_temperature/heat_limit) * (our_pressure/pressure_limit), 5, 50), BURN, 0) update_icon() diff --git a/code/modules/atmospherics/machinery/portable/pump.dm b/code/modules/atmospherics/machinery/portable/pump.dm index 121d540aab9..b0135134bd5 100644 --- a/code/modules/atmospherics/machinery/portable/pump.dm +++ b/code/modules/atmospherics/machinery/portable/pump.dm @@ -44,7 +44,7 @@ var/pressure = air_contents.return_pressure() var/temperature = air_contents.return_temperature() - ///function used to check the limit of the pumps and also set the amount of damage that the pump can recieve, if the heat and pressure are way higher than the limit the more damage will be done + ///function used to check the limit of the pumps and also set the amount of damage that the pump can receive, if the heat and pressure are way higher than the limit the more damage will be done if(temperature > heat_limit || pressure > pressure_limit) take_damage(clamp((temperature/heat_limit) * (pressure/pressure_limit), 5, 50), BURN, 0) return diff --git a/code/modules/atmospherics/machinery/portable/scrubber.dm b/code/modules/atmospherics/machinery/portable/scrubber.dm index da4b57532e9..a97ba1a8fe9 100644 --- a/code/modules/atmospherics/machinery/portable/scrubber.dm +++ b/code/modules/atmospherics/machinery/portable/scrubber.dm @@ -42,7 +42,7 @@ var/pressure = air_contents.return_pressure() var/temperature = air_contents.return_temperature() - ///function used to check the limit of the scrubbers and also set the amount of damage that the scrubber can recieve, if the heat and pressure are way higher than the limit the more damage will be done + ///function used to check the limit of the scrubbers and also set the amount of damage that the scrubber can receive, if the heat and pressure are way higher than the limit the more damage will be done if(temperature > heat_limit || pressure > pressure_limit) take_damage(clamp((temperature/heat_limit) * (pressure/pressure_limit), 5, 50), BURN, 0) return diff --git a/code/modules/cargo/blackmarket/blackmarket_telepad.dm b/code/modules/cargo/blackmarket/blackmarket_telepad.dm index 81b29375046..31e081d14c6 100644 --- a/code/modules/cargo/blackmarket/blackmarket_telepad.dm +++ b/code/modules/cargo/blackmarket/blackmarket_telepad.dm @@ -10,8 +10,8 @@ def_components = list(/obj/item/stack/ore/bluespace_crystal = /obj/item/stack/ore/bluespace_crystal/artificial) /obj/machinery/ltsrbt - name = "Long-To-Short-Range-Bluespace-Transciever" - desc = "The LTSRBT is a compact teleportation machine for recieving and sending items outside the station and inside the station.\nUsing teleportation frequencies stolen from NT it is near undetectable.\nEssential for any illegal market operations on NT stations.\n" + name = "Long-To-Short-Range-Bluespace-Transceiver" + desc = "The LTSRBT is a compact teleportation machine for receiving and sending items outside the station and inside the station.\nUsing teleportation frequencies stolen from NT it is near undetectable.\nEssential for any illegal market operations on NT stations.\n" icon_state = "exonet_node" circuit = /obj/item/circuitboard/machine/ltsrbt density = TRUE @@ -22,17 +22,17 @@ var/power_efficiency = 1 /// Power used per teleported which gets divided by power_efficiency. var/power_usage_per_teleport = 10000 - /// The time it takes for the machine to recharge before being able to send or recieve items. + /// The time it takes for the machine to recharge before being able to send or receive items. var/recharge_time = 0 /// Current recharge progress. var/recharge_cooldown = 0 /// Base recharge time which is used to get recharge_time. var/base_recharge_time = 100 - /// Current /datum/blackmarket_purchase being recieved. - var/recieving + /// Current /datum/blackmarket_purchase being received. + var/receiving /// Current /datum/blackmarket_purchase being sent to the target uplink. var/transmitting - /// Queue for purchases that the machine should recieve and send. + /// Queue for purchases that the machine should receive and send. var/list/datum/blackmarket_purchase/queue = list() /obj/machinery/ltsrbt/Initialize() @@ -61,10 +61,10 @@ if(!power_efficiency) power_efficiency = 1 -/// Adds /datum/blackmarket_purchase to queue unless the machine is free, then it sets the purchase to be instantly recieved +/// Adds /datum/blackmarket_purchase to queue unless the machine is free, then it sets the purchase to be instantly received /obj/machinery/ltsrbt/proc/add_to_queue(datum/blackmarket_purchase/purchase) - if(!recharge_cooldown && !recieving && !transmitting) - recieving = purchase + if(!recharge_cooldown && !receiving && !transmitting) + receiving = purchase return queue += purchase @@ -77,8 +77,8 @@ return var/turf/T = get_turf(src) - if(recieving) - var/datum/blackmarket_purchase/P = recieving + if(receiving) + var/datum/blackmarket_purchase/P = receiving if(!P.item || ispath(P.item)) P.item = P.entry.spawn_item(T) @@ -92,7 +92,7 @@ sparks.attach(P.item) sparks.start() - recieving = null + receiving = null transmitting = P recharge_cooldown = recharge_time @@ -112,4 +112,4 @@ return if(queue.len) - recieving = pick_n_take(queue) + receiving = pick_n_take(queue) diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index fd3903224a2..a85fc18d923 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -19,7 +19,7 @@ if(needs_item_input && anchored) register_input_turf() -/// Gets the turf in the `input_dir` direction adjacent to the machine, and registers signals for ATOM_ENTERED and ATOM_CREATED. Calls the `pickup_item()` proc when it recieves these signals. +/// Gets the turf in the `input_dir` direction adjacent to the machine, and registers signals for ATOM_ENTERED and ATOM_CREATED. Calls the `pickup_item()` proc when it receives these signals. /obj/machinery/mineral/proc/register_input_turf() input_turf = get_step(src, input_dir) if(input_turf) // make sure there is actually a turf diff --git a/code/modules/modular_computers/file_system/programs/cargoship.dm b/code/modules/modular_computers/file_system/programs/cargoship.dm index 39543adfa57..c7319e1a2cd 100644 --- a/code/modules/modular_computers/file_system/programs/cargoship.dm +++ b/code/modules/modular_computers/file_system/programs/cargoship.dm @@ -10,7 +10,7 @@ ui_y = 350 ///Account used for creating barcodes. var/datum/bank_account/payments_acc - ///The amount which the tagger will recieve for the sale. + ///The amount which the tagger will receive for the sale. var/percent_cut = 20 /datum/computer_file/program/shipping/ui_data(mob/user) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index fcf7f94cc10..6775a3cb3d2 100644 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -387,11 +387,11 @@ righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi' w_class = WEIGHT_CLASS_TINY slot_flags = ITEM_SLOT_BELT - ///The account which is recieving the split profits. + ///The account which is receiving the split profits. var/datum/bank_account/payments_acc = null var/paper_count = 10 var/max_paper_count = 20 - ///Details the percentage the scanned account recieves off the final sale. + ///Details the percentage the scanned account receives off the final sale. var/percent_cut = 20 /obj/item/sales_tagger/examine(mob/user) @@ -455,7 +455,7 @@ if(!potential_cut) percent_cut = 50 percent_cut = clamp(round(potential_cut, 1), 1, 50) - to_chat(user, "[percent_cut]% profit will be recieved if a package with a barcode is sold.") + to_chat(user, "[percent_cut]% profit will be received if a package with a barcode is sold.") /obj/item/barcode name = "Barcode tag" diff --git a/code/modules/surgery/experimental_dissection.dm b/code/modules/surgery/experimental_dissection.dm index 2203db8cf1f..e8cc949722e 100644 --- a/code/modules/surgery/experimental_dissection.dm +++ b/code/modules/surgery/experimental_dissection.dm @@ -27,7 +27,7 @@ time = 125 silicons_obey_prob = TRUE repeatable = TRUE - experience_given = 0 //experience recieved scales with what's being dissected + which step you're doing. + experience_given = 0 //experience received scales with what's being dissected + which step you're doing. /datum/surgery_step/dissection/preop(mob/user, mob/living/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message("[user] starts dissecting [target].", "You start dissecting [target].") diff --git a/code/modules/uplink/uplink_items.dm b/code/modules/uplink/uplink_items.dm index aa92cafabdb..1b2cda9376f 100644 --- a/code/modules/uplink/uplink_items.dm +++ b/code/modules/uplink/uplink_items.dm @@ -219,7 +219,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) /datum/uplink_item/bundles_TC/bundle_B name = "Syndi-kit Special" desc = "Syndicate Bundles, also known as Syndi-Kits, are specialized groups of items that arrive in a plain box. \ - In Syndi-kit Special, you will recieve items used by famous syndicate agents of the past. Collectively worth more than 20 telecrystals, the syndicate loves a good throwback." + In Syndi-kit Special, you will receive items used by famous syndicate agents of the past. Collectively worth more than 20 telecrystals, the syndicate loves a good throwback." item = /obj/item/storage/box/syndicate/bundle_B cost = 20 exclude_modes = list(/datum/game_mode/nuclear, /datum/game_mode/nuclear/clown_ops)