From 68f53787fc6093679a6bd12154da83cba1f975cf Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 20 Mar 2016 14:12:57 -0400 Subject: [PATCH] ItemStack.Empty -> ItemStack.EmptyStack --- TrueCraft.Core/Logic/Blocks/TallGrassBlock.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}