Wield images for raillike nodes, remove inventory images for nodes that never appear in the inventory.
This commit is contained in:
@@ -4,6 +4,7 @@ minetest.register_node("jeija:pressure_plate_wood_off", {
|
||||
drawtype = "raillike",
|
||||
tile_images = {"jeija_pressure_plate_wood_off.png"},
|
||||
inventory_image = "jeija_pressure_plate_wood_off.png",
|
||||
wield_image = "jeija_pressure_plate_wood_off.png",
|
||||
paramtype = "light",
|
||||
is_ground_content = true,
|
||||
walkable = false,
|
||||
@@ -17,7 +18,6 @@ minetest.register_node("jeija:pressure_plate_wood_off", {
|
||||
minetest.register_node("jeija:pressure_plate_wood_on", {
|
||||
drawtype = "raillike",
|
||||
tile_images = {"jeija_pressure_plate_wood_on.png"},
|
||||
inventory_image = "jeija_pressure_plate_wood_on.png",
|
||||
paramtype = "light",
|
||||
is_ground_content = true,
|
||||
walkable = false,
|
||||
@@ -26,7 +26,6 @@ minetest.register_node("jeija:pressure_plate_wood_on", {
|
||||
},
|
||||
material = minetest.digprop_constanttime(0.3),
|
||||
drop='"jeija:pressure_plate_wood_off" 1',
|
||||
description="Wood Pressure Plate",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
@@ -82,6 +81,7 @@ minetest.register_node("jeija:pressure_plate_stone_off", {
|
||||
drawtype = "raillike",
|
||||
tile_images = {"jeija_pressure_plate_stone_off.png"},
|
||||
inventory_image = "jeija_pressure_plate_stone_off.png",
|
||||
wield_image = "jeija_pressure_plate_stone_off.png",
|
||||
paramtype = "light",
|
||||
is_ground_content = true,
|
||||
walkable = false,
|
||||
@@ -95,7 +95,6 @@ minetest.register_node("jeija:pressure_plate_stone_off", {
|
||||
minetest.register_node("jeija:pressure_plate_stone_on", {
|
||||
drawtype = "raillike",
|
||||
tile_images = {"jeija_pressure_plate_stone_on.png"},
|
||||
inventory_image = "jeija_pressure_plate_stone_on.png",
|
||||
paramtype = "light",
|
||||
is_ground_content = true,
|
||||
walkable = false,
|
||||
@@ -104,7 +103,6 @@ minetest.register_node("jeija:pressure_plate_stone_on", {
|
||||
},
|
||||
material = minetest.digprop_constanttime(0.3),
|
||||
drop='"jeija:pressure_plate_stone_off" 1',
|
||||
description="Stone Pressure Plate",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
Reference in New Issue
Block a user