Skip to content

Commit

Permalink
Do not apply waving shader to bush leaves (#2753)
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Oct 20, 2020
1 parent 6605724 commit 720d4c8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions mods/default/nodes.lua
Expand Up @@ -1677,7 +1677,6 @@ minetest.register_node("default:bush_stem", {
minetest.register_node("default:bush_leaves", {
description = S("Bush Leaves"),
drawtype = "allfaces_optional",
waving = 1,
tiles = {"default_leaves_simple.png"},
paramtype = "light",
groups = {snappy = 3, flammable = 2, leaves = 1},
Expand Down Expand Up @@ -1731,7 +1730,6 @@ minetest.register_node("default:bush_sapling", {
minetest.register_node("default:blueberry_bush_leaves_with_berries", {
description = S("Blueberry Bush Leaves with Berries"),
drawtype = "allfaces_optional",
waving = 1,
tiles = {"default_blueberry_bush_leaves.png^default_blueberry_overlay.png"},
paramtype = "light",
groups = {snappy = 3, flammable = 2, leaves = 1, dig_immediate = 3},
Expand All @@ -1748,7 +1746,6 @@ minetest.register_node("default:blueberry_bush_leaves_with_berries", {
minetest.register_node("default:blueberry_bush_leaves", {
description = S("Blueberry Bush Leaves"),
drawtype = "allfaces_optional",
waving = 1,
tiles = {"default_blueberry_bush_leaves.png"},
paramtype = "light",
groups = {snappy = 3, flammable = 2, leaves = 1},
Expand Down Expand Up @@ -1827,7 +1824,6 @@ minetest.register_node("default:acacia_bush_stem", {
minetest.register_node("default:acacia_bush_leaves", {
description = S("Acacia Bush Leaves"),
drawtype = "allfaces_optional",
waving = 1,
tiles = {"default_acacia_leaves_simple.png"},
paramtype = "light",
groups = {snappy = 3, flammable = 2, leaves = 1},
Expand Down Expand Up @@ -1898,7 +1894,6 @@ minetest.register_node("default:pine_bush_stem", {
minetest.register_node("default:pine_bush_needles", {
description = S("Pine Bush Needles"),
drawtype = "allfaces_optional",
waving = 1,
tiles = {"default_pine_needles.png"},
paramtype = "light",
groups = {snappy = 3, flammable = 2, leaves = 1},
Expand Down Expand Up @@ -1949,6 +1944,7 @@ minetest.register_node("default:pine_bush_sapling", {
end,
})
minetest.register_node("default:sand_with_kelp", {
description = S("Kelp"),
drawtype = "plantlike_rooted",
Expand Down

0 comments on commit 720d4c8

Please sign in to comment.