Reduce the max grow time for cactus

This commit is contained in:
Drew DeVault 2015-09-30 07:36:03 -04:00
parent 069e80469c
commit b0c41ffdcc

View File

@ -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;