From 488df55c660718a79e45364a281a145f75eec5f8 Mon Sep 17 00:00:00 2001 From: RustingWithYou <63625389+RustingWithYou@users.noreply.github.com> Date: Sat, 9 Dec 2023 03:26:59 +1300 Subject: [PATCH] seed fix (#17891) --- .../modules/hydroponics/seed_datums/unathi.dm | 14 +++---- html/changelogs/RustingWithYou - sneed.yml | 41 +++++++++++++++++++ 2 files changed, 48 insertions(+), 7 deletions(-) create mode 100644 html/changelogs/RustingWithYou - sneed.yml diff --git a/code/modules/hydroponics/seed_datums/unathi.dm b/code/modules/hydroponics/seed_datums/unathi.dm index 2cbef7c4b18..0c89d57490e 100644 --- a/code/modules/hydroponics/seed_datums/unathi.dm +++ b/code/modules/hydroponics/seed_datums/unathi.dm @@ -24,7 +24,7 @@ seed_type = "xuizi" /datum/seed/sarezhi - name = "sarezhi berry" + name = "sarezhi" seed_name = "sarezshi berry" display_name = "sarezhi berry bush" mutants = null @@ -46,7 +46,7 @@ set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) /obj/item/seeds/sarezhiseed - seed_type = "sarezhi berry" + seed_type = "sarezhi" /datum/seed/gukhe name = "gukhe" @@ -73,7 +73,7 @@ set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) /obj/item/seeds/gukheseed - seed_type = "gukhe bloom" + seed_type = "gukhe" /datum/seed/aghrassh name = "aghrassh" @@ -97,7 +97,7 @@ seed_type = "aghrassh" /datum/seed/sthberry - name = "S'th berry" + name = "sthberry" seed_name = "S'th berry" display_name = "S'th berry bush" chems = list(/singleton/reagent/nutriment = list(2,2), /singleton/reagent/drink/sthberryjuice = list(3,5)) @@ -118,10 +118,10 @@ set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) /obj/item/seeds/sthberryseed - seed_type = "S'th berry" + seed_type = "sthberry" /datum/seed/flower/serkiflower - name = "S'erki flowers" + name = "serkiflower" seed_name = "S'erki flower" display_name = "S'erki flowers" @@ -136,4 +136,4 @@ set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) /obj/item/seeds/serkiflowerseed - seed_type = "S'erki flowers" + seed_type = "serkiflower" diff --git a/html/changelogs/RustingWithYou - sneed.yml b/html/changelogs/RustingWithYou - sneed.yml new file mode 100644 index 00000000000..98050163cc3 --- /dev/null +++ b/html/changelogs/RustingWithYou - sneed.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: RustingWithYou + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "All Unathi plants should now properly display in seed vendors."