Skip to content

Commit

Permalink
Miso Soup Spelling Error (shiptest-ss13#3370)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->
Corrects spelling for "milo soup" to "miso soup"

![image](https://github.com/user-attachments/assets/8636445c-126c-4248-99ed-ad1ea1e4a9a2)

## Why It's Good For The Game

<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->
idk why it was named milo anyways, there's literally a comment that says
"wtf is milo".
## Changelog

:cl:
fix: miso soup spelling error
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
trazodont authored Sep 23, 2024
1 parent 309385c commit b065692
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions code/modules/food_and_drinks/food/snacks_soup.dm
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,12 @@
tastes = list("tomato" = 1, "squirming" = 1)
foodtype = MEAT | GORE

/obj/item/reagent_containers/food/snacks/soup/milo
name = "milosoup"
/obj/item/reagent_containers/food/snacks/soup/miso
name = "miso soup"
desc = "The universes best soup! Yum!!!"
icon_state = "milosoup"
icon_state = "misosoup"
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 3)
tastes = list("milo" = 1) // wtf is milo
tastes = list("miso" = 1) // wtf is milo
foodtype = VEGETABLES

/obj/item/reagent_containers/food/snacks/soup/mushroom
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@
subcategory = CAT_SOUP


/datum/crafting_recipe/food/milosoup
name = "Milo soup"
/datum/crafting_recipe/food/misosoup
name = "Miso soup"
reqs = list(
/datum/reagent/water = 10,
/obj/item/reagent_containers/glass/bowl = 1,
/obj/item/reagent_containers/food/snacks/soydope = 2,
/obj/item/reagent_containers/food/snacks/tofu = 2
)
result = /obj/item/reagent_containers/food/snacks/soup/milo
result = /obj/item/reagent_containers/food/snacks/soup/miso
subcategory = CAT_SOUP

/datum/crafting_recipe/food/bloodsoup
Expand Down
Binary file modified icons/obj/food/soupsalad.dmi
Binary file not shown.

0 comments on commit b065692

Please sign in to comment.