From 1b616b3f2503769a13d602bf0364601a85ff26d5 Mon Sep 17 00:00:00 2001 From: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> Date: Sun, 26 Oct 2025 14:06:11 +0100 Subject: [PATCH] Spelling, grammar, and Britishism fixes for food and drink (#30664) * Spelling, grammar, and Britishism fixes * Update code/modules/food_and_drinks/food/condiment.dm Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Signed-off-by: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> * Update code/modules/food_and_drinks/food/customizables.dm Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Signed-off-by: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> * Update code/modules/reagents/chemistry/reagents/food_reagents.dm Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Signed-off-by: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> --------- Signed-off-by: AmityBlamity <142629851+AmityBlamity@users.noreply.github.com> Co-authored-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> --- .../drinks/bottler/bottler_recipes.dm | 2 +- .../food_and_drinks/drinks/drinks/bottle.dm | 4 ++-- .../food_and_drinks/drinks/drinks_base.dm | 2 +- code/modules/food_and_drinks/food/condiment.dm | 2 +- .../food_and_drinks/food/customizables.dm | 2 +- .../food_and_drinks/food/foods/baked_goods.dm | 16 ++++++++-------- code/modules/food_and_drinks/food/foods/candy.dm | 6 +++--- code/modules/food_and_drinks/food/foods/pasta.dm | 2 +- code/modules/food_and_drinks/food/foods/pizza.dm | 2 +- .../food_and_drinks/food/foods/sandwiches.dm | 4 ++-- .../food_and_drinks/food/foods/seafood.dm | 2 +- code/modules/food_and_drinks/food/foods/soups.dm | 2 +- .../reagents/chemistry/reagents/food_reagents.dm | 4 ++-- 13 files changed, 25 insertions(+), 25 deletions(-) diff --git a/code/modules/food_and_drinks/drinks/bottler/bottler_recipes.dm b/code/modules/food_and_drinks/drinks/bottler/bottler_recipes.dm index 465b1625e0a..e334dcd68a2 100644 --- a/code/modules/food_and_drinks/drinks/bottler/bottler_recipes.dm +++ b/code/modules/food_and_drinks/drinks/bottler/bottler_recipes.dm @@ -69,7 +69,7 @@ There is no excuse to do this wrong now that there is an example for you. --Fals /datum/bottler_recipe/meteor_malt name = "Meteor Malt" - description = "Soft drinks have been detected on collision course with your tastebuds." + description = "Soft drinks have been detected on collision course with your taste buds." ingredients = list(/obj/item/stack/ore, /obj/item/food/grown/wheat, /obj/item/stack/ore) diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm index f7759ca0e61..92c9753a4d7 100644 --- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm +++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm @@ -37,7 +37,7 @@ B.name = "broken carton" B.force = 0 B.throwforce = 0 - B.desc = "A carton with the bottom half burst open. Might give you a papercut." + B.desc = "A carton with the bottom half burst open. Might give you a paper cut." transfer_fingerprints_to(B) qdel(src) @@ -182,7 +182,7 @@ /obj/item/reagent_containers/drinks/bottle/vodka name = "Tunguska Triple Distilled" - desc = "Aah, vodka. Prime choice of drink AND fuel by Russians worldwide." + desc = "Aah, vodka. Prime choice of drink AND fuel by Russians galaxy-wide." icon_state = "vodkabottle" list_reagents = list("vodka" = 100) diff --git a/code/modules/food_and_drinks/drinks/drinks_base.dm b/code/modules/food_and_drinks/drinks/drinks_base.dm index 9e00814aa3d..03829e77cf8 100644 --- a/code/modules/food_and_drinks/drinks/drinks_base.dm +++ b/code/modules/food_and_drinks/drinks/drinks_base.dm @@ -148,7 +148,7 @@ /// 2023 toolbox tournament 3rd place went to paradise station. /obj/item/reagent_containers/drinks/trophy/bronze_cup/toolbox_win name = "3rd place toolbox tournament 2567" - desc = "Awarded to centcomms elite toolbox warriors raising money for the GBS research institute." + desc = "Awarded to CentComm's elite toolbox warriors raising money for the GBS research institute." icon_state = "reward_cup" force = 10.3 throwforce = 10.3 diff --git a/code/modules/food_and_drinks/food/condiment.dm b/code/modules/food_and_drinks/food/condiment.dm index ced7d2a8676..2ae4729df2f 100644 --- a/code/modules/food_and_drinks/food/condiment.dm +++ b/code/modules/food_and_drinks/food/condiment.dm @@ -256,7 +256,7 @@ /obj/item/reagent_containers/condiment/frostoil name = "cold sauce" - desc = "A special oil that noticably chills the body. Extraced from Icepeppers." + desc = "A special oil that noticeably chills the body. Extracted from chilly peppers." icon_state = "coldsauce" list_reagents = list("frostoil" = 50) possible_states = list() diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index 0c2b072b031..0e0b04c8d10 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -142,7 +142,7 @@ do {\ /obj/item/food/customizable/cook/donkpocket name = "donk pocket" - desc = "You wanna put a bangin-Oh nevermind." + desc = "You wanna put a bangin- Oh, never mind." icon_state = "donkcustom" baseicon = "donkcustom" basename = "donk pocket" diff --git a/code/modules/food_and_drinks/food/foods/baked_goods.dm b/code/modules/food_and_drinks/food/foods/baked_goods.dm index b0c71d77fe7..b45b65d5b6e 100644 --- a/code/modules/food_and_drinks/food/foods/baked_goods.dm +++ b/code/modules/food_and_drinks/food/foods/baked_goods.dm @@ -20,7 +20,7 @@ /obj/item/food/sliced/carrot_cake name = "carrot cake slice" - desc = "Carrotty slice of Carrot Cake, carrots are good for your eyes! Also not a lie." + desc = "Carrotty slice of Carrot Cake. Carrots are good for your eyes! Also not a lie." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "carrotcake_slice" trash = /obj/item/trash/plate @@ -93,7 +93,7 @@ /obj/item/food/sliced/plain_cake name = "plain cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "plaincake_slice" trash = /obj/item/trash/plate @@ -117,7 +117,7 @@ /obj/item/food/sliced/orange_cake name = "orange cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "orangecake_slice" trash = /obj/item/trash/plate @@ -141,7 +141,7 @@ /obj/item/food/sliced/banana_cake name = "banana cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "bananacake_slice" trash = /obj/item/trash/plate @@ -165,7 +165,7 @@ /obj/item/food/sliced/lime_cake name = "lime cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "limecake_slice" trash = /obj/item/trash/plate @@ -189,7 +189,7 @@ /obj/item/food/sliced/lemon_cake name = "lemon cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "lemoncake_slice" trash = /obj/item/trash/plate @@ -213,7 +213,7 @@ /obj/item/food/sliced/chocolate_cake name = "chocolate cake slice" - desc = "Just a slice of cake, it is enough for everyone." + desc = "Just a slice of cake. It's enough for everyone." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "chocolatecake_slice" trash = /obj/item/trash/plate @@ -686,7 +686,7 @@ /obj/item/food/applepie name = "apple pie" - desc = "A pie containing sweet sweet love... or apple." + desc = "A pie containing sweet, sweet love... or apple." icon = 'icons/obj/food/bakedgoods.dmi' icon_state = "applepie" filling_color = "#E0EDC5" diff --git a/code/modules/food_and_drinks/food/foods/candy.dm b/code/modules/food_and_drinks/food/foods/candy.dm index fe81247a632..029a0b48fda 100644 --- a/code/modules/food_and_drinks/food/foods/candy.dm +++ b/code/modules/food_and_drinks/food/foods/candy.dm @@ -37,7 +37,7 @@ /obj/item/food/candy/nougat name = "nougat" - desc = "A soft, chewy candy commonly found in candybars." + desc = "A soft, chewy candy commonly found in candy bars." icon_state = "nougat" filling_color = "#7D5F46" list_reagents = list("nutriment" = 3, "sugar" = 3) @@ -164,7 +164,7 @@ /obj/item/food/candy/candybar name = "candy" - desc = "A chocolate candybar, wrapped in a bit of foil." + desc = "A chocolate candy bar, wrapped in a bit of foil." trash = /obj/item/trash/candy filling_color = "#7D5F46" bitesize = 3 @@ -481,7 +481,7 @@ /obj/item/food/candy/jellybean/coffee name = "coffee jelly bean" - desc = "A candy bean, guaranteed to not give you gas. It's Coffee flavored!" + desc = "A candy bean, guaranteed to not give you gas. It's coffee flavored!" icon_state = "jbean_choc" filling_color = "#482000" list_reagents = list("sugar" = 10, "coffee" = 2) diff --git a/code/modules/food_and_drinks/food/foods/pasta.dm b/code/modules/food_and_drinks/food/foods/pasta.dm index b23cbe0a695..7d62ec86fa3 100644 --- a/code/modules/food_and_drinks/food/foods/pasta.dm +++ b/code/modules/food_and_drinks/food/foods/pasta.dm @@ -62,7 +62,7 @@ /obj/item/food/spesslaw name = "spesslaw" - desc = "A lawyer's favourite." + desc = "A lawyer's favorite." icon = 'icons/obj/food/pasta.dmi' icon_state = "spesslaw" filling_color = "#DE4545" diff --git a/code/modules/food_and_drinks/food/foods/pizza.dm b/code/modules/food_and_drinks/food/foods/pizza.dm index 47b0ebefd29..b7a8039d315 100644 --- a/code/modules/food_and_drinks/food/foods/pizza.dm +++ b/code/modules/food_and_drinks/food/foods/pizza.dm @@ -100,7 +100,7 @@ /obj/item/food/sliced/hawaiian_pizza name = "hawaiian pizza slice" - desc = "A slice of polarising pizza." + desc = "A slice of polarizing pizza." icon = 'icons/obj/food/pizza.dmi' icon_state = "hawaiianpizzaslice" filling_color = "#e5b437" diff --git a/code/modules/food_and_drinks/food/foods/sandwiches.dm b/code/modules/food_and_drinks/food/foods/sandwiches.dm index e5ae0e4b240..d30af6d101b 100644 --- a/code/modules/food_and_drinks/food/foods/sandwiches.dm +++ b/code/modules/food_and_drinks/food/foods/sandwiches.dm @@ -305,7 +305,7 @@ /obj/item/food/burger/mcrib name = "mcRib" - desc = "An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it." + desc = "An elusive rib-shaped burger with limited availability across the galaxy. Not as good as you remember it." icon_state = "mcrib" bitesize = 3 filling_color = "#F2B6EA" @@ -394,7 +394,7 @@ /obj/item/food/notasandwich name = "not-a-sandwich" - desc = "Something seems to be wrong with this, you can't quite figure what. Maybe it's his moustache." + desc = "Something seems to be wrong with this, but you can't quite figure out what. Maybe it's his moustache." icon = 'icons/obj/food/burgerbread.dmi' icon_state = "notasandwich" list_reagents = list("nutriment" = 6, "vitamin" = 6) diff --git a/code/modules/food_and_drinks/food/foods/seafood.dm b/code/modules/food_and_drinks/food/foods/seafood.dm index ca690222f96..1d5b122c488 100644 --- a/code/modules/food_and_drinks/food/foods/seafood.dm +++ b/code/modules/food_and_drinks/food/foods/seafood.dm @@ -89,7 +89,7 @@ /obj/item/food/sashimi name = "carp sashimi" - desc = "Celebrate surviving attack from hostile alien lifeforms by hospitalising yourself." + desc = "Celebrate surviving attack from hostile alien lifeforms by hospitalizing yourself." icon = 'icons/obj/food/seafood.dmi' icon_state = "sashimi" bitesize = 3 diff --git a/code/modules/food_and_drinks/food/foods/soups.dm b/code/modules/food_and_drinks/food/foods/soups.dm index bb56ebf6809..821884b7f57 100644 --- a/code/modules/food_and_drinks/food/foods/soups.dm +++ b/code/modules/food_and_drinks/food/foods/soups.dm @@ -289,7 +289,7 @@ /obj/item/food/soup/hong_kong_macaroni name = "hong kong macaroni" - desc = "A favourite from Hong Kong's Cha Chaan Tengs, this macaroni soup came to Mars with Cantonese settlers under Cybersun Industries, and has become as much of a breakfast staple there as it is in its homeland." + desc = "A favorite from Hong Kong's Cha Chaan Tengs, this macaroni soup came to Mars with Cantonese settlers under Cybersun Industries, and has become as much of a breakfast staple there as it is in its homeland." icon_state = "hong_kong_macaroni" list_reagents = list("nutriment" = 8, "protein" = 2) tastes = list("cream" = 1, "chicken" = 1, "pasta" = 1, "ham" =1) diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index 7b64aeebd30..de7d67d3683 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -207,7 +207,7 @@ /datum/reagent/consumable/condensedcapsaicin name = "Condensed Capsaicin" id = "condensedcapsaicin" - description = "This shit goes in pepperspray." + description = "This shit goes in pepper spray." reagent_state = LIQUID color = "#B31008" // rgb: 179, 16, 8 taste_description = "PURE FIRE" @@ -236,7 +236,7 @@ /datum/reagent/consumable/frostoil name = "Frost Oil" id = "frostoil" - description = "A special oil that noticably chills the body. Extraced from Icepeppers." + description = "A special oil that noticeably chills the body. Extracted from chilly peppers." reagent_state = LIQUID color = "#8BA6E9" // rgb: 139, 166, 233 process_flags = ORGANIC | SYNTHETIC