Change inventory images for obscure items

This commit is contained in:
Wuzzy 2019-09-24 00:42:24 +02:00
parent fe95b064a5
commit dfd9afe7b6
2 changed files with 6 additions and 2 deletions

View File

@ -91,8 +91,6 @@ local function register_torch(subname, description, tiles, overlay_tiles, overla
drawtype = "nodebox",
tiles = tiles2,
overlay_tiles = overlay_tiles2,
inventory_image = inv_image,
wield_image = inv_image,
paramtype = "light",
paramtype2 = "wallmounted",
light_source = light,

View File

@ -37,6 +37,7 @@ minetest.register_node(
description = S("Wheat Plant (stage 1)"),
drawtype = "plantlike",
tiles = {"farming_wheat_2.png"},
inventory_image = "farming_wheat_2.png",
paramtype = "light",
waving = 1,
walkable = false,
@ -63,6 +64,7 @@ minetest.register_node(
description = S("Wheat Plant (stage 2)"),
drawtype = "plantlike",
tiles = {"farming_wheat_3.png"},
inventory_image = "farming_wheat_3.png",
paramtype = "light",
waving = 1,
walkable = false,
@ -89,6 +91,7 @@ minetest.register_node(
description = S("Wheat Plant (stage 3)"),
drawtype = "plantlike",
tiles = {"farming_wheat_4.png"},
inventory_image = "farming_wheat_4.png",
paramtype = "light",
waving = 1,
walkable = false,
@ -146,6 +149,7 @@ minetest.register_node(
description = S("Cotton Plant (stage 1)"),
drawtype = "plantlike",
tiles = {"farming_cotton_2.png"},
inventory_image = "farming_cotton_2.png",
paramtype = "light",
waving = 1,
walkable = false,
@ -172,6 +176,7 @@ minetest.register_node(
description = S("Cotton Plant (stage 2)"),
drawtype = "plantlike",
tiles = {"farming_cotton_3.png"},
inventory_image = "farming_cotton_3.png",
paramtype = "light",
waving = 1,
walkable = false,
@ -198,6 +203,7 @@ minetest.register_node(
description = S("Cotton Plant (stage 3)"),
drawtype = "plantlike",
tiles = {"farming_cotton_4.png"},
inventory_image = "farming_cotton_4.png",
paramtype = "light",
waving = 1,
walkable = false,