mojira.dev
MC-50447

"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.

Linked issues

Attachments

Comments 18

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.

  • Can confirm for Tall grass : try with /setblock ~ ~ ~ minecraft:tallgrass 5 for example (should place a green dead bush)

  • Can confirm for Nether wart : /setblock ~ ~ ~ minecraft:nether_wart 4/5

[Mojang] Mog (Ryan Holtz) in MC-49121

If the correct data value is set, then the issue will not happen, so you're basically stating that if the incorrect data value is set, the issue will happen. Not a bug.

8 more comments

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. 🙂

Roger Russell

migrated

Confirmed

Minecraft 14w10b, Minecraft 14w11b, Minecraft 14w17a

Retrieved