Move torches into mcnt_torch.

master
ROllerozxa 2021-08-12 15:21:02 +02:00
parent 067463e2ab
commit 9287e7e2df
6 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@ groups = {dig_immediate=3, torch=1, deco_block=1, attached_node=1}
local floordef = {
description = "Torch",
drawtype = "mesh",
mesh = "torch_floor.obj",
mesh = "mcnt_torch_floor.obj",
inventory_image = terrain(80),
wield_image = terrain(80),
tiles = { terrain(80) },
@ -95,14 +95,14 @@ local floordef = {
end,
on_rotate = false,
}
minetest.register_node(itemstring, floordef)
minetest.register_node(":"..itemstring, floordef)
local groups_wall = table.copy(groups)
groups_wall.torch = 2
local walldef = {
drawtype = "mesh",
mesh = "torch_wall.obj",
mesh = "mcnt_torch_wall.obj",
inventory_image = terrain(80),
tiles = { terrain(80) },
use_texture_alpha = minetest.features.use_texture_alpha_string_modes and "opaque" or false,
@ -123,4 +123,12 @@ local walldef = {
on_rotate = false,
}
minetest.register_node(itemstring_wall, walldef)
minetest.register_node(":"..itemstring_wall, walldef)
minetest.register_craft({
output = "minecraft:torch 4",
recipe = {
{"minecraft:coal"},
{"minecraft:stick"},
}
})

1
mods/mcnt_torch/mod.conf Normal file
View File

@ -0,0 +1 @@
name = mcnt_torch

View File

@ -441,4 +441,3 @@ minetest.register_node("minecraft:spawner", {
-- More blocks that are in their separate code file.
dofile(minetest.get_modpath("minecraft") .. "/blocks/chest.lua")
dofile(minetest.get_modpath("minecraft") .. "/blocks/torch.lua")

View File

@ -27,14 +27,6 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "minecraft:torch 4",
recipe = {
{"minecraft:coal"},
{"minecraft:stick"},
}
})
minetest.register_craft({
output = "minecraft:bucket",
recipe = {