"Missing texture" texture for variants of tall grass
March 6, 2014 while playing at about 6:00 p.m. I encountered 3 separate instances of the box replacing textures for (1) a flower, (2) tall grass and (3) overworld netherwart. This was after reported fix.
Also boats are still broken.
Environment
32 bit system running xp java updated regularly.
Created Issue:
purple and black checkered box for some objects.
March 6, 2014 while playing at about 6:00 p.m. I encountered 3 separate instances of the box replacing textures for (1) a flower, (2) tall grass and (3) overworld netherwart. This was after reported fix.
Also boats are still broken.
Environment
32 bit system running xp java updated regularly.
Deleted Comment:
I've just checked for those blocks with some damage values, and there is no problem
Deleted Comment:
Fixed in 10c... Relates to/duplicate of
MC-50276
Added Attachments:
Changed Summary:
purple and black checkered box for some objects."Missing texture" texture for variants of tall grass
Removed Attachments:
Added Linked Issues:
is duplicated by
Added Assignee:
Mog (Ryan Holtz)
Added Linked Issues:
is duplicated by



You're listing four different bugs there, you need four separate issues. Please see if 10c fixed any of these.
Are you using setblock?
Possibly Gary, but we are getting new reports of similar issues, usually with setblock.
EDIT: Also affects 10c.
[Mojang] Mog (Ryan Holtz) in
MC-49121Kumasasa: For Green Dead bush, 5 is a correct data value and 0 for Dead bush (tall grass variant)
...And lots of people have this issue with Nether wart (see
MC-50525)In fact confirmed for several minecraft:grass 0, 3, 4 and 5 but since minecraft:deadbush is existing, said blocks can be assumed invalid.
Also confirmed for nether_wart 4, but this is invalid too.
Kumasasa: Look at the wiki: http://minecraft.gamepedia.com/Dead_Bush =/= http://minecraft.gamepedia.com/Tall_grass
Tall grass has five variants.
That breaks some adventure maps and for me, it's a regression.
Well, it's up to Mojang now.
Confirmed for 14w11b
I would also like to point out that faceless pumpkins (pumpkin 4) and upwards-facing hoppers (hopper 1) have the missing texture.
Yeah, I'm getting this in 14w11b as well. It really ruins the look of adventure maps that use shrubs for decoration (since they can be placed on grass).
It started when they added the capabilities of choosing what variants choose which models they can choose. All the fix needs is to translate these subtypes into the JSON file so the game can render them correctly.
Confirmed for 14w17a
Works as intended. None of these are valid, supported uses of the blocks in question. Faceless pumpkins, upward-facing hoppers, and tinted dead bushes were all bugs that just happened to work due to quirks in the code, but never officially supported. Minecraft Wiki certainly says that data value 3 for tall grass will produce a tinted dead bush, but Minecraft Wiki is not an official authority on anything and not Mojang-endorsed. The three types of blocks supported by tall grass is very explicit in the code:
public static final int TYPE_DEADBUSH = 0;
public static final int TYPE_TALLGRASS = 1;
public static final int TYPE_FERN = 2;
Note that there is not "public static final int TYPE_TINTED_BUSH", because the tinted bush was nothing more than an incorrect data value that just happened to work at the time, which some "clever" person posted on the Minecraft Wiki.
Thanks for the clarification.