Skip to content

Commit 7f9de85

Browse files
committed
Remove biome tinting for dry grass.
1 parent c77711d commit 7f9de85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chunky/src/java/se/llbit/chunky/block/MinecraftBlockProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,8 +1185,8 @@ private static void addBlocks(Texture texture, String... names) {
11851185
addBlock("bush", (name, tag) -> new TintedSpriteBlock(name, Texture.bush, Tint.BIOME_GRASS));
11861186
addBlock("firefly_bush", (name, tag) -> new FireflyBush());
11871187
addBlock("cactus_flower", (name, tag) -> new SpriteBlock(name, Texture.cactusFlower));
1188-
addBlock("short_dry_grass", (name, tag) -> new TintedSpriteBlock(name, Texture.shortDryGrass, Tint.BIOME_DRY_FOLIAGE));
1189-
addBlock("tall_dry_grass", (name, tag) -> new TintedSpriteBlock(name, Texture.tallDryGrass, Tint.BIOME_DRY_FOLIAGE));
1188+
addBlock("short_dry_grass", (name, tag) -> new SpriteBlock(name, Texture.shortDryGrass));
1189+
addBlock("tall_dry_grass", (name, tag) -> new SpriteBlock(name, Texture.tallDryGrass));
11901190
addBlock("dried_ghast", (name, tag) -> new DriedGhast(BlockProvider.facing(tag), BlockProvider.stringToInt(tag.get("Properties").get("hydration"), 0)));
11911191
}
11921192

0 commit comments

Comments
 (0)