From b0c41ffdcc58d345f0bf0348d269c0694e4b4313 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 30 Sep 2015 07:36:03 -0400 Subject: [PATCH] Reduce the max grow time for cactus --- TrueCraft.Core/Logic/Blocks/CactusBlock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TrueCraft.Core/Logic/Blocks/CactusBlock.cs b/TrueCraft.Core/Logic/Blocks/CactusBlock.cs index 5e070e2..f54221f 100644 --- a/TrueCraft.Core/Logic/Blocks/CactusBlock.cs +++ b/TrueCraft.Core/Logic/Blocks/CactusBlock.cs @@ -13,7 +13,7 @@ namespace TrueCraft.Core.Logic.Blocks public class CactusBlock : BlockProvider { public static readonly int MinGrowthSeconds = 30; - public static readonly int MaxGrowthSeconds = 120; + public static readonly int MaxGrowthSeconds = 60; public static readonly int MaxGrowHeight = 3; public static readonly byte BlockID = 0x51;