From 0884b276912ce4059a12ff3ab38f24c6025e162a Mon Sep 17 00:00:00 2001 From: tomixcomics <11053204+tomixcomics@users.noreply.github.com> Date: Fri, 30 Jan 2026 21:27:47 +0200 Subject: [PATCH] [BUG FIX] adds new plant type to the seed vendors (#21751) Adds cucumbers to the seed vendors since I neglected to do that, apparently. --------- Co-authored-by: VMSolidus --- code/game/machinery/vending/hydro.dm | 2 + code/game/objects/random/produce.dm | 1 + code/modules/hydroponics/seed_storage.dm | 1 + html/changelogs/tomixcomics-cucumberfix2.yml | 58 ++++++++++++++++++++ 4 files changed, 62 insertions(+) create mode 100644 html/changelogs/tomixcomics-cucumberfix2.yml diff --git a/code/game/machinery/vending/hydro.dm b/code/game/machinery/vending/hydro.dm index 318f7fd8923..a4a90d362cf 100644 --- a/code/game/machinery/vending/hydro.dm +++ b/code/game/machinery/vending/hydro.dm @@ -187,6 +187,7 @@ /obj/item/seeds/cocoapodseed = 3, /obj/item/seeds/coffeeseed = 3, /obj/item/seeds/cornseed = 3, + /obj/item/seeds/cucumberseed = 3, /obj/item/seeds/dynseed = 3, /obj/item/seeds/earthenroot = 2, /obj/item/seeds/eggplantseed = 3, @@ -274,6 +275,7 @@ /obj/item/seeds/cocoapodseed = 6.00, /obj/item/seeds/coffeeseed = 12.00, /obj/item/seeds/cornseed = 4.00, + /obj/item/seeds/cucumberseed = 4.00, /obj/item/seeds/dynseed = 8.50, /obj/item/seeds/earthenroot = 12.00, /obj/item/seeds/eggplantseed = 4.00, diff --git a/code/game/objects/random/produce.dm b/code/game/objects/random/produce.dm index a792d8789b4..51d7941e932 100644 --- a/code/game/objects/random/produce.dm +++ b/code/game/objects/random/produce.dm @@ -124,5 +124,6 @@ /obj/item/seeds/peanutseed, /obj/item/seeds/soyaseed, /obj/item/seeds/cabbageseed, + /obj/item/seeds/cucumberseed, /obj/item/seeds/bellpepperseed ) diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index e070ab02e20..b277a31a168 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -296,6 +296,7 @@ /obj/item/seeds/cocoapodseed = 3, /obj/item/seeds/coffeeseed = 3, /obj/item/seeds/cornseed = 3, + /obj/item/seeds/cucumberseed = 3, /obj/item/seeds/cranberryseed = 2, /obj/item/seeds/dirtberries = 2, /obj/item/seeds/dynseed = 3, diff --git a/html/changelogs/tomixcomics-cucumberfix2.yml b/html/changelogs/tomixcomics-cucumberfix2.yml new file mode 100644 index 00000000000..b05c3f0450b --- /dev/null +++ b/html/changelogs/tomixcomics-cucumberfix2.yml @@ -0,0 +1,58 @@ +################################ +# 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 +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Tomixcomics + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Added cucumber seeds to the seed vendors."