{
// Try parsing as an internal Minecraft name
// This is so that things like "minecraft:stone" aren't parsed
// as the block "minecraft" with data "stone", but instead as the
// block "minecraft:stone" with no block data.
Block block = Block.b(input);
if (block != null)
{
return BukkitMaterialData.ofMinecraftBlock(block, 0);
}