From 1c7b821c6f3787b20fea7dfd92e8a73f9c394ea4 Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Tue, 22 Oct 2024 17:15:05 -0700 Subject: [PATCH 1/5] Update hydroponics.dm --- code/modules/hydroponics/hydroponics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 13faaf5f15..82733bacb4 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -246,7 +246,7 @@ adjustHealth(-rand(1,3) / rating) // Harvest code - if(age > (myseed.production * 1.5) && (age - lastproduce) > (myseed.production * 1.5) && (!harvest && !dead)) + if(age > (myseed.production * 15) && (age - lastproduce) > (myseed.production * 15) && (!harvest && !dead)) if(myseed && myseed.yield != -1) // Unharvestable shouldn't be harvested harvest = TRUE else From 8414ed4abcb22258bb4bd7095947b402204a0846 Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Tue, 22 Oct 2024 17:20:11 -0700 Subject: [PATCH 2/5] Update botany.dm --- code/__DEFINES/botany.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/botany.dm b/code/__DEFINES/botany.dm index 4abffb067d..499a01b867 100644 --- a/code/__DEFINES/botany.dm +++ b/code/__DEFINES/botany.dm @@ -2,8 +2,8 @@ #define YIELD_WEED_MINIMUM 3 #define YIELD_WEED_MAXIMUM 10 #define STATIC_NUTRIENT_CAPACITY 10 -#define CYCLE_DELAY_DEFAULT 200 //About 10 seconds / cycle -#define CYCLE_DELAY_SLOW 500 //About 25 seconds / cycle +#define CYCLE_DELAY_DEFAULT 2000 //About 100 seconds / cycle +#define CYCLE_DELAY_SLOW 5000 //About 250 seconds / cycle //Both available scanning modes for the plant analyzer. #define PLANT_SCANMODE_STATS 0 From 26ff2e3f1870b9ed1301d6ad42ec265e198555c9 Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Sat, 26 Oct 2024 22:33:20 -0700 Subject: [PATCH 3/5] Update hydroponics.dm --- code/modules/hydroponics/hydroponics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 82733bacb4..13faaf5f15 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -246,7 +246,7 @@ adjustHealth(-rand(1,3) / rating) // Harvest code - if(age > (myseed.production * 15) && (age - lastproduce) > (myseed.production * 15) && (!harvest && !dead)) + if(age > (myseed.production * 1.5) && (age - lastproduce) > (myseed.production * 1.5) && (!harvest && !dead)) if(myseed && myseed.yield != -1) // Unharvestable shouldn't be harvested harvest = TRUE else From 840dba22da2d32b0a4f4ef590c6fcde17ab2b14d Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Tue, 26 Nov 2024 00:24:16 -0800 Subject: [PATCH 4/5] Update botany.dm --- code/__DEFINES/botany.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/botany.dm b/code/__DEFINES/botany.dm index 499a01b867..1c15b70b06 100644 --- a/code/__DEFINES/botany.dm +++ b/code/__DEFINES/botany.dm @@ -2,8 +2,8 @@ #define YIELD_WEED_MINIMUM 3 #define YIELD_WEED_MAXIMUM 10 #define STATIC_NUTRIENT_CAPACITY 10 -#define CYCLE_DELAY_DEFAULT 2000 //About 100 seconds / cycle -#define CYCLE_DELAY_SLOW 5000 //About 250 seconds / cycle +#define CYCLE_DELAY_DEFAULT 250 //About 25 seconds / cycle +#define CYCLE_DELAY_SLOW 620 //About 62 seconds / cycle //Both available scanning modes for the plant analyzer. #define PLANT_SCANMODE_STATS 0 From e0ca48f5a92abfb3b5b7cf05013af116555ed5a6 Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Tue, 26 Nov 2024 00:55:41 -0800 Subject: [PATCH 5/5] Update botany.dm --- code/__DEFINES/botany.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/botany.dm b/code/__DEFINES/botany.dm index 1c15b70b06..0e250ada66 100644 --- a/code/__DEFINES/botany.dm +++ b/code/__DEFINES/botany.dm @@ -2,8 +2,8 @@ #define YIELD_WEED_MINIMUM 3 #define YIELD_WEED_MAXIMUM 10 #define STATIC_NUTRIENT_CAPACITY 10 -#define CYCLE_DELAY_DEFAULT 250 //About 25 seconds / cycle -#define CYCLE_DELAY_SLOW 620 //About 62 seconds / cycle +#define CYCLE_DELAY_DEFAULT 300 //About 30 seconds / cycle +#define CYCLE_DELAY_SLOW 600 //About 60 seconds / cycle //Both available scanning modes for the plant analyzer. #define PLANT_SCANMODE_STATS 0