Skip to content

Commit

Permalink
Merge pull request #111 from masaishi/add-short-grass-support
Browse files Browse the repository at this point in the history
Support rendering of short_grass in rendered_palette.rs
  • Loading branch information
owengage authored Apr 30, 2024
2 parents d2653e3 + b1f6566 commit aaff3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastanvil/src/rendered_palette.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl Palette for RenderedPalette {
// of the most called functions. Yuck.
if let Some(id) = block.name().strip_prefix("minecraft:") {
match id {
"grass" | "tall_grass" | "vine" | "fern" | "large_fern" => {
"grass" | "tall_grass" | "vine" | "fern" | "large_fern" | "short_grass" => {
return self.pick_grass(biome);
}
"grass_block" => {
Expand Down

0 comments on commit aaff3aa

Please sign in to comment.