From a9e7267994aa03640dbbc663c7999dac95def70e Mon Sep 17 00:00:00 2001 From: Shadeykins Date: Tue, 5 Feb 2019 19:34:35 -0700 Subject: [PATCH] Fixes some casing. --- code/modules/food_and_drinks/food/foods/candy.dm | 10 +++++----- code/modules/food_and_drinks/food/foods/junkfood.dm | 2 +- code/modules/food_and_drinks/food/foods/meat.dm | 4 ++-- code/modules/food_and_drinks/food/foods/misc.dm | 2 +- code/modules/food_and_drinks/food/foods/pizza.dm | 4 ++-- code/modules/food_and_drinks/food/foods/sandwiches.dm | 4 ++-- code/modules/food_and_drinks/food/foods/seafood.dm | 2 +- code/modules/food_and_drinks/food/foods/soups.dm | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/code/modules/food_and_drinks/food/foods/candy.dm b/code/modules/food_and_drinks/food/foods/candy.dm index d45537bfe27..fb5ea043839 100644 --- a/code/modules/food_and_drinks/food/foods/candy.dm +++ b/code/modules/food_and_drinks/food/foods/candy.dm @@ -509,32 +509,32 @@ list_reagents = list("nutriment" = 1, "chocolate" = 1) /obj/item/reagent_containers/food/snacks/candy/confectionery/rice - name = "asteroid crunch bar" + name = "Asteroid Crunch Bar" desc = "Crunchy rice deposits in delicious chocolate! A favorite of miners galaxy-wide." icon_state = "asteroidcrunch" trash = /obj/item/trash/candy filling_color = "#7D5F46" /obj/item/reagent_containers/food/snacks/candy/confectionery/toffee - name = "yum-baton bar" + name = "Yum-Baton Bar" desc = "Chocolate and toffee in the shape of a baton. Security sure knows how to pound these down!" icon_state = "yumbaton" filling_color = "#7D5F46" /obj/item/reagent_containers/food/snacks/candy/confectionery/caramel - name = "malper bar" + name = "Malper Bar" desc = "A chocolate syringe filled with a caramel injection. Just what the doctor ordered!" icon_state = "malper" filling_color = "#7D5F46" /obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat - name = "toxins test bar" + name = "Toxins Test Bar" desc = "An explosive combination of chocolate, caramel, and nougat. Research has never been so tasty!" icon_state = "toxinstest" filling_color = "#7D5F46" /obj/item/reagent_containers/food/snacks/candy/confectionery/nougat - name = "tool-erone bar" + name = "Tool-erone Bar" desc = "Chocolate-covered nougat, shaped like a wrench. Great for an engineer on the go!" icon_state = "toolerone" filling_color = "#7D5F46" diff --git a/code/modules/food_and_drinks/food/foods/junkfood.dm b/code/modules/food_and_drinks/food/foods/junkfood.dm index 97d810a167e..3fa20f0d1c3 100644 --- a/code/modules/food_and_drinks/food/foods/junkfood.dm +++ b/code/modules/food_and_drinks/food/foods/junkfood.dm @@ -23,7 +23,7 @@ list_reagents = list("protein" = 1, "sugar" = 3) /obj/item/reagent_containers/food/snacks/pistachios - name = "Pistachios" + name = "pistachios" icon_state = "pistachios" desc = "Deliciously salted pistachios. A perfectly valid choice..." trash = /obj/item/trash/pistachios diff --git a/code/modules/food_and_drinks/food/foods/meat.dm b/code/modules/food_and_drinks/food/foods/meat.dm index 9ed4d013d21..0d57d3197cd 100644 --- a/code/modules/food_and_drinks/food/foods/meat.dm +++ b/code/modules/food_and_drinks/food/foods/meat.dm @@ -40,7 +40,7 @@ /obj/item/reagent_containers/food/snacks/meat/corgi name = "corgi meat" - desc = "Tastes like the HoP's hopes and dreams" + desc = "Tastes like the Head of Personnel's hopes and dreams" /obj/item/reagent_containers/food/snacks/meat/pug name = "pug meat" @@ -140,7 +140,7 @@ /obj/item/reagent_containers/food/snacks/bacon name = "bacon" - desc = "It looks juicy and tastes amazing! Mmm... Bacon." + desc = "It looks crispy and tastes amazing! Mmm... Bacon." icon_state = "bacon2" list_reagents = list("nutriment" = 4, "porktonium" = 10, "msg" = 4) diff --git a/code/modules/food_and_drinks/food/foods/misc.dm b/code/modules/food_and_drinks/food/foods/misc.dm index 7790a5ebe7b..9aaa095278e 100644 --- a/code/modules/food_and_drinks/food/foods/misc.dm +++ b/code/modules/food_and_drinks/food/foods/misc.dm @@ -58,7 +58,7 @@ ////////////////////// /obj/item/reagent_containers/food/snacks/aesirsalad - name = "aesir salad" + name = "Aesir salad" desc = "Probably too incredible for mortal men to fully enjoy." icon_state = "aesirsalad" trash = /obj/item/trash/snack_bowl diff --git a/code/modules/food_and_drinks/food/foods/pizza.dm b/code/modules/food_and_drinks/food/foods/pizza.dm index c0f1a02656f..a8a8b5ca572 100644 --- a/code/modules/food_and_drinks/food/foods/pizza.dm +++ b/code/modules/food_and_drinks/food/foods/pizza.dm @@ -66,14 +66,14 @@ filling_color = "#BAA14C" /obj/item/reagent_containers/food/snacks/sliceable/pizza/hawaiianpizza - name = "hawaiian pizza" + name = "Hawaiian pizza" desc = "Love it or hate it, this pizza divides opinions. Complete with juicy pineapple." icon_state = "hawaiianpizza" //NEEDED slice_path = /obj/item/reagent_containers/food/snacks/hawaiianpizzaslice list_reagents = list("protein" = 15, "tomatojuice" = 6, "plantmatter" = 20, "pineapplejuice" = 6, "vitamin" = 5) /obj/item/reagent_containers/food/snacks/hawaiianpizzaslice - name = "hawaiian pizza slice" + name = "Hawaiian pizza slice" desc = "A slice of polarising pizza." icon = 'icons/obj/food/pizza.dmi' icon_state = "hawaiianpizzaslice" diff --git a/code/modules/food_and_drinks/food/foods/sandwiches.dm b/code/modules/food_and_drinks/food/foods/sandwiches.dm index d422b426353..43f1b31df0e 100644 --- a/code/modules/food_and_drinks/food/foods/sandwiches.dm +++ b/code/modules/food_and_drinks/food/foods/sandwiches.dm @@ -112,7 +112,7 @@ list_reagents = list("nutriment" = 6, "vitamin" = 1) /obj/item/reagent_containers/food/snacks/bigbiteburger - name = "big bite burger" + name = "BigBite burger" desc = "Forget the Big Mac, THIS is the future!" icon_state = "bigbiteburger" filling_color = "#E3D681" @@ -120,7 +120,7 @@ list_reagents = list("nutriment" = 10, "vitamin" = 2) /obj/item/reagent_containers/food/snacks/superbiteburger - name = "super bite burger" + name = "SuperBite burger" desc = "This is a mountain of a burger. FOOD!" icon_state = "superbiteburger" filling_color = "#CCA26A" diff --git a/code/modules/food_and_drinks/food/foods/seafood.dm b/code/modules/food_and_drinks/food/foods/seafood.dm index 2ce01bc05d0..d06f1eeb77b 100644 --- a/code/modules/food_and_drinks/food/foods/seafood.dm +++ b/code/modules/food_and_drinks/food/foods/seafood.dm @@ -46,7 +46,7 @@ list_reagents = list("nutriment" = 4) /obj/item/reagent_containers/food/snacks/fishburger - name = "fillet -o- carp sandwich" + name = "Fillet-O-Carp sandwich" desc = "Almost like a carp is yelling somewhere... Give me back that fillet -o- carp, give me that carp." icon = 'icons/obj/food/seafood.dmi' icon_state = "fishburger" diff --git a/code/modules/food_and_drinks/food/foods/soups.dm b/code/modules/food_and_drinks/food/foods/soups.dm index 2cc72044393..586912d1f79 100644 --- a/code/modules/food_and_drinks/food/foods/soups.dm +++ b/code/modules/food_and_drinks/food/foods/soups.dm @@ -68,7 +68,7 @@ reagents.add_reagent("[extra_reagent]", 5) /obj/item/reagent_containers/food/snacks/wishsoup - name = "wish soup" + name = "Wish Soup" desc = "I wish this was soup." icon_state = "wishsoup" trash = /obj/item/trash/snack_bowl