diff --git a/TrueCraft.Core/Logic/Blocks/TallGrassBlock.cs b/TrueCraft.Core/Logic/Blocks/TallGrassBlock.cs index 331aa91..3575d5c 100644 --- a/TrueCraft.Core/Logic/Blocks/TallGrassBlock.cs +++ b/TrueCraft.Core/Logic/Blocks/TallGrassBlock.cs @@ -63,7 +63,7 @@ namespace TrueCraft.Core.Logic.Blocks if (MathHelper.Random.Next (1, 24) == 1) return new[] { new ItemStack (SeedsItem.ItemID, 1) }; else - return new[] { ItemStack.Empty }; + return new[] { ItemStack.EmptyStack }; } } -} \ No newline at end of file +}