Skip to content

Commit

Permalink
Fix wield image for coral and kelp nodes (#2850)
Browse files Browse the repository at this point in the history
  • Loading branch information
An0n3m0us committed Mar 17, 2021
1 parent 34bb232 commit 0a90bd8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mods/default/nodes.lua
Expand Up @@ -1961,6 +1961,7 @@ minetest.register_node("default:sand_with_kelp", {
tiles = {"default_sand.png"},
special_tiles = {{name = "default_kelp.png", tileable_vertical = true}},
inventory_image = "default_kelp.png",
wield_image = "default_kelp.png",
paramtype = "light",
paramtype2 = "leveled",
groups = {snappy = 3},
Expand Down Expand Up @@ -2077,6 +2078,7 @@ minetest.register_node("default:coral_green", {
tiles = {"default_coral_skeleton.png"},
special_tiles = {{name = "default_coral_green.png", tileable_vertical = true}},
inventory_image = "default_coral_green.png",
wield_image = "default_coral_green.png",
groups = {snappy = 3},
selection_box = {
type = "fixed",
Expand Down Expand Up @@ -2107,6 +2109,7 @@ minetest.register_node("default:coral_pink", {
tiles = {"default_coral_skeleton.png"},
special_tiles = {{name = "default_coral_pink.png", tileable_vertical = true}},
inventory_image = "default_coral_pink.png",
wield_image = "default_coral_pink.png",
groups = {snappy = 3},
selection_box = {
type = "fixed",
Expand Down Expand Up @@ -2137,6 +2140,7 @@ minetest.register_node("default:coral_cyan", {
tiles = {"default_coral_skeleton.png"},
special_tiles = {{name = "default_coral_cyan.png", tileable_vertical = true}},
inventory_image = "default_coral_cyan.png",
wield_image = "default_coral_cyan.png",
groups = {snappy = 3},
selection_box = {
type = "fixed",
Expand Down

0 comments on commit 0a90bd8

Please sign in to comment.