From 86bdb7de701efe4fe724614d2c6ecd2fcb708cef Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Sun, 21 Dec 2025 18:22:04 +0100 Subject: [PATCH] Fixes plants dying in soil and open hydroponics trays (#21679) The light for the plants was being counted as double their value, meaning a light level of 4 would be considered light level 8 by the plant, thus being vastly outside its preferred range --- code/modules/hydroponics/trays/tray_process.dm | 2 +- html/changelogs/ReopenTheGarden.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/ReopenTheGarden.yml diff --git a/code/modules/hydroponics/trays/tray_process.dm b/code/modules/hydroponics/trays/tray_process.dm index bc5c00ecb6b..45155ceb600 100644 --- a/code/modules/hydroponics/trays/tray_process.dm +++ b/code/modules/hydroponics/trays/tray_process.dm @@ -104,7 +104,7 @@ // Handle light requirements for upcoming logic. var/light_supplied if(!closed_system) - light_supplied = T.get_lumcount(0, 3) * 10 + light_supplied = T.get_lumcount(0, 3) * 5 else light_supplied = tray_light diff --git a/html/changelogs/ReopenTheGarden.yml b/html/changelogs/ReopenTheGarden.yml new file mode 100644 index 00000000000..945a3ec848f --- /dev/null +++ b/html/changelogs/ReopenTheGarden.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Fixes the gardening plots and open hydroponics trays being unable to grow plants."