Depollute the code - 03

This commit is contained in:
Zweihorn 2019-05-19 12:40:36 +02:00 committed by Yves Quemener
parent 4b99c82c73
commit c32552f8ef
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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"},
}