diff --git a/code/modules/hydroponics/seed_datums/unathi.dm b/code/modules/hydroponics/seed_datums/unathi.dm index 1e3d6cff8c5..37f0133085e 100644 --- a/code/modules/hydroponics/seed_datums/unathi.dm +++ b/code/modules/hydroponics/seed_datums/unathi.dm @@ -94,7 +94,7 @@ set_trait(TRAIT_PLANT_ICON,"tree") /obj/item/seeds/aghrasshseed - seed_type = "aghrassh tree" + seed_type = "aghrassh" /datum/seed/sthberry name = "S'th berry" diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index f72aa11baf4..22d4d30f73b 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -39,6 +39,7 @@ name = "Garden seed storage" scanner = list("stats") starting_seeds = list( + /obj/item/seeds/aghrasshseed = 3, /obj/item/seeds/ambrosiavulgarisseed = 3, /obj/item/seeds/appleseed = 3, /obj/item/seeds/bananaseed = 3, @@ -63,6 +64,7 @@ /obj/item/seeds/grapeseed = 3, /obj/item/seeds/grassseed = 3, /obj/item/seeds/guamiseed = 2, + /obj/item/seeds/gukheseed = 3, /obj/item/seeds/lemonseed = 3, /obj/item/seeds/limeseed = 3, /obj/item/seeds/mossseed = 2, @@ -84,9 +86,12 @@ /obj/item/seeds/replicapod = 3, /obj/item/seeds/riceseed = 3, /obj/item/seeds/richcoffeeseed = 3, + /obj/item/seeds/sarezhiseed = 3, /obj/item/seeds/seaweed = 3, + /obj/item/seeds/serkiflowerseed = 1, /obj/item/seeds/shandseed = 2, /obj/item/seeds/soyaseed = 3, + /obj/item/seeds/sthberryseed = 3, /obj/item/seeds/strawberryseed = 3, /obj/item/seeds/sugarcaneseed = 3, /obj/item/seeds/sugartree = 2, @@ -100,6 +105,7 @@ /obj/item/seeds/wheatseed = 3, /obj/item/seeds/whitebeetseed = 3, /obj/item/seeds/wulumunushaseed = 2, + /obj/item/seeds/xuiziseed = 3, /obj/item/seeds/ylpha = 2, /obj/item/seeds/clam = 15, /obj/item/seeds/barnacle = 15, @@ -113,6 +119,7 @@ name = "Xenobotany seed storage" scanner = list("stats", "produce", "soil", "temperature", "light") starting_seeds = list( + /obj/item/seeds/aghrasshseed = 3, /obj/item/seeds/ambrosiavulgarisseed = 3, /obj/item/seeds/appleseed = 3, /obj/item/seeds/amanitamycelium = 2, @@ -137,6 +144,7 @@ /obj/item/seeds/glowshroom = 2, /obj/item/seeds/grapeseed = 3, /obj/item/seeds/grassseed = 3, + /obj/item/seeds/gukheseed = 3, /obj/item/seeds/koisspore = 3, /obj/item/seeds/lemonseed = 3, /obj/item/seeds/libertymycelium = 2, @@ -158,7 +166,10 @@ /obj/item/seeds/reishimycelium = 2, /obj/item/seeds/riceseed = 3, /obj/item/seeds/richcoffeeseed = 3, + /obj/item/seeds/sarezhiseed = 3, + /obj/item/seeds/serkiflowerseed, /obj/item/seeds/soyaseed = 3, + /obj/item/seeds/sthberryseed = 3, /obj/item/seeds/strawberryseed = 3, /obj/item/seeds/sugarcaneseed = 3, /obj/item/seeds/sunflowerseed = 3, @@ -173,6 +184,7 @@ /obj/item/seeds/wheatseed = 3, /obj/item/seeds/whitebeetseed = 3, /obj/item/seeds/wulumunushaseed = 3, + /obj/item/seeds/xuiziseed = 3, /obj/item/seeds/dynseed = 3, /obj/item/seeds/fjylozyn = 3, /obj/item/seeds/chickpeas = 3 diff --git a/html/changelogs/RustingWithYou - plantfixes.yml b/html/changelogs/RustingWithYou - plantfixes.yml new file mode 100644 index 00000000000..baa1ff89399 --- /dev/null +++ b/html/changelogs/RustingWithYou - plantfixes.yml @@ -0,0 +1,42 @@ +################################ +# 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: + - tweak: "Hydroponics vendors should now have Unathi plant seeds." + - bugfix: "Aghrassh tree seeds now have the correct seed datums."