From 8a8dd8f4b6fdbed591d73b820eb2ed48d5fd67ef Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Mon, 19 Jun 2023 23:04:45 -0700 Subject: [PATCH] Fix further/MetaStation (#76158) ## About The Pull Request Typo fixes. Further and fixes MetaStation's default name to match the JSON. ## Changelog :cl: LT3 spellcheck: Fixed a few typos /:cl: --- code/controllers/subsystem/mapping.dm | 2 +- code/datums/map_config.dm | 2 +- code/game/machinery/suit_storage_unit.dm | 2 +- code/game/objects/structures/crates_lockers/closets.dm | 4 ++-- .../objects/structures/crates_lockers/closets/cardboardbox.dm | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 67811674370..f9783076345 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -104,7 +104,7 @@ SUBSYSTEM_DEF(mapping) var/old_config = config config = global.config.defaultmap if(!config || config.defaulted) - to_chat(world, span_boldannounce("Unable to load next or default map config, defaulting to Meta Station.")) + to_chat(world, span_boldannounce("Unable to load next or default map config, defaulting to MetaStation.")) config = old_config plane_offset_to_true = list() true_to_offset_planes = list() diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index 9a4bce61e92..8ea96175ea6 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -14,7 +14,7 @@ var/votable = FALSE // Config actually from the JSON - should default to Meta - var/map_name = "Meta Station" + var/map_name = "MetaStation" var/map_path = "map_files/MetaStation" var/map_file = "MetaStation.dmm" diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 56874562d68..2621e080118 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -62,7 +62,7 @@ var/card_reader_installed = FALSE /// physical reference of the players id card to check for PERSONAL access level var/datum/weakref/id_card = null - /// should we prevent furthur access change + /// should we prevent further access change var/access_locked = FALSE /obj/machinery/suit_storage_unit/standard_unit diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 4c0accfc61e..ed331390a13 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -71,7 +71,7 @@ var/contents_initialized = FALSE /// is this closet locked by an exclusive id, i.e. your own personal locker var/datum/weakref/id_card = null - /// should we prevent furthur access change + /// should we prevent further access change var/access_locked = FALSE /// is the card reader installed in this machine var/card_reader_installed = FALSE @@ -290,7 +290,7 @@ else . += span_notice("Its airlock electronics are [EXAMINE_HINT("screwed")] in place.") if(!card_reader_installed && length(access_choices)) - . += span_notice("You can install a card reader for furthur access control.") + . += span_notice("You can install a card reader for further access control.") else if(card_reader_installed) . += span_notice("The card reader could be [EXAMINE_HINT("pried")] out.") . += span_notice("Swipe your PDA with an ID card/Just ID to change access levels.") diff --git a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm index e2b16478bb0..f504e89bee8 100644 --- a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm +++ b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm @@ -57,7 +57,7 @@ return TRUE // Cache the list before we open the box. alerted = viewers(7, src) - // There are no mobs to alert? clear the list & prevent furthur action after opening the box + // There are no mobs to alert? clear the list & prevent further action after opening the box if(!(locate(/mob/living) in alerted)) alerted = null