ItemStack.Empty -> ItemStack.EmptyStack

This commit is contained in:
Drew DeVault 2016-03-20 14:12:57 -04:00
parent 090e1042c9
commit 68f53787fc

View File

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