Depollute the code - 03
This commit is contained in:
parent
4b99c82c73
commit
c32552f8ef
|
@ -326,7 +326,7 @@ if fire_enabled then
|
|||
interval = 7,
|
||||
chance = 12,
|
||||
catch_up = false,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
action = function(pos)
|
||||
local p = minetest.find_node_near(pos, 1, {"air"})
|
||||
if p then
|
||||
minetest.set_node(p, {name = "fire:basic_flame"})
|
||||
|
@ -343,7 +343,7 @@ if fire_enabled then
|
|||
interval = 5,
|
||||
chance = 18,
|
||||
catch_up = false,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
action = function(pos)
|
||||
local p = minetest.find_node_near(pos, 1, {"group:flammable"})
|
||||
if not p then
|
||||
return
|
||||
|
|
|
@ -71,7 +71,7 @@ minetest.register_craftitem("map:mapping_kit", {
|
|||
minetest.register_craft({
|
||||
output = "map:mapping_kit",
|
||||
recipe = {
|
||||
{"default:glass", "default:paper", "default:stick"},
|
||||
{"default:glass", "default:paper", "group:stick"},
|
||||
{"default:steel_ingot", "default:paper", "default:steel_ingot"},
|
||||
{"group:wood", "default:paper", "dye:black"},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue