mirror of
https://github.com/minetest/minetest_game.git
synced 2024-12-22 15:00:18 +01:00
Fix wield image for coral and kelp nodes (#2850)
This commit is contained in:
parent
34bb232052
commit
0a90bd8a0e
@ -1961,6 +1961,7 @@ minetest.register_node("default:sand_with_kelp", {
|
|||||||
tiles = {"default_sand.png"},
|
tiles = {"default_sand.png"},
|
||||||
special_tiles = {{name = "default_kelp.png", tileable_vertical = true}},
|
special_tiles = {{name = "default_kelp.png", tileable_vertical = true}},
|
||||||
inventory_image = "default_kelp.png",
|
inventory_image = "default_kelp.png",
|
||||||
|
wield_image = "default_kelp.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "leveled",
|
paramtype2 = "leveled",
|
||||||
groups = {snappy = 3},
|
groups = {snappy = 3},
|
||||||
@ -2077,6 +2078,7 @@ minetest.register_node("default:coral_green", {
|
|||||||
tiles = {"default_coral_skeleton.png"},
|
tiles = {"default_coral_skeleton.png"},
|
||||||
special_tiles = {{name = "default_coral_green.png", tileable_vertical = true}},
|
special_tiles = {{name = "default_coral_green.png", tileable_vertical = true}},
|
||||||
inventory_image = "default_coral_green.png",
|
inventory_image = "default_coral_green.png",
|
||||||
|
wield_image = "default_coral_green.png",
|
||||||
groups = {snappy = 3},
|
groups = {snappy = 3},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
@ -2107,6 +2109,7 @@ minetest.register_node("default:coral_pink", {
|
|||||||
tiles = {"default_coral_skeleton.png"},
|
tiles = {"default_coral_skeleton.png"},
|
||||||
special_tiles = {{name = "default_coral_pink.png", tileable_vertical = true}},
|
special_tiles = {{name = "default_coral_pink.png", tileable_vertical = true}},
|
||||||
inventory_image = "default_coral_pink.png",
|
inventory_image = "default_coral_pink.png",
|
||||||
|
wield_image = "default_coral_pink.png",
|
||||||
groups = {snappy = 3},
|
groups = {snappy = 3},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
@ -2137,6 +2140,7 @@ minetest.register_node("default:coral_cyan", {
|
|||||||
tiles = {"default_coral_skeleton.png"},
|
tiles = {"default_coral_skeleton.png"},
|
||||||
special_tiles = {{name = "default_coral_cyan.png", tileable_vertical = true}},
|
special_tiles = {{name = "default_coral_cyan.png", tileable_vertical = true}},
|
||||||
inventory_image = "default_coral_cyan.png",
|
inventory_image = "default_coral_cyan.png",
|
||||||
|
wield_image = "default_coral_cyan.png",
|
||||||
groups = {snappy = 3},
|
groups = {snappy = 3},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
Loading…
Reference in New Issue
Block a user