Skip to content

Commit 0a90bd8

Browse files
authoredMar 17, 2021
Fix wield image for coral and kelp nodes (#2850)
1 parent 34bb232 commit 0a90bd8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

Diff for: ‎mods/default/nodes.lua

+4
Original file line numberDiff line numberDiff line change
@@ -1961,6 +1961,7 @@ minetest.register_node("default:sand_with_kelp", {
19611961
tiles = {"default_sand.png"},
19621962
special_tiles = {{name = "default_kelp.png", tileable_vertical = true}},
19631963
inventory_image = "default_kelp.png",
1964+
wield_image = "default_kelp.png",
19641965
paramtype = "light",
19651966
paramtype2 = "leveled",
19661967
groups = {snappy = 3},
@@ -2077,6 +2078,7 @@ minetest.register_node("default:coral_green", {
20772078
tiles = {"default_coral_skeleton.png"},
20782079
special_tiles = {{name = "default_coral_green.png", tileable_vertical = true}},
20792080
inventory_image = "default_coral_green.png",
2081+
wield_image = "default_coral_green.png",
20802082
groups = {snappy = 3},
20812083
selection_box = {
20822084
type = "fixed",
@@ -2107,6 +2109,7 @@ minetest.register_node("default:coral_pink", {
21072109
tiles = {"default_coral_skeleton.png"},
21082110
special_tiles = {{name = "default_coral_pink.png", tileable_vertical = true}},
21092111
inventory_image = "default_coral_pink.png",
2112+
wield_image = "default_coral_pink.png",
21102113
groups = {snappy = 3},
21112114
selection_box = {
21122115
type = "fixed",
@@ -2137,6 +2140,7 @@ minetest.register_node("default:coral_cyan", {
21372140
tiles = {"default_coral_skeleton.png"},
21382141
special_tiles = {{name = "default_coral_cyan.png", tileable_vertical = true}},
21392142
inventory_image = "default_coral_cyan.png",
2143+
wield_image = "default_coral_cyan.png",
21402144
groups = {snappy = 3},
21412145
selection_box = {
21422146
type = "fixed",

0 commit comments

Comments
 (0)
Please sign in to comment.