From 79b4e56971916499a1c431da0d3ad33083329024 Mon Sep 17 00:00:00 2001 From: Miniature Date: Fri, 13 Jan 2012 00:57:27 +1030 Subject: [PATCH] Made hydroponics happen 5 times slower, current rate means you have no time to do anything This is entirely a guess at the correct speed and will likely require further changes --- code/game/machinery/hydroponics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/hydroponics.dm b/code/game/machinery/hydroponics.dm index a39d1b9445b..199fed0b860 100644 --- a/code/game/machinery/hydroponics.dm +++ b/code/game/machinery/hydroponics.dm @@ -16,7 +16,7 @@ var/health = 0 // Its health. var/lastproduce = 0 // Last time it was harvested var/lastcycle = 0 //Used for timing of cycles. - var/cycledelay = 200 // About 10 seconds / cycle + var/cycledelay = 1000 // About 50 seconds / cycle var/planted = 0 // Is it occupied? var/harvest = 0 //Ready to harvest? var/obj/item/seeds/myseed = null // The currently planted seed