1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-29 07:50:35 +02:00

Merged crafting recipes (all finished now)

This commit is contained in:
LeMagnesium 2015-06-11 18:23:44 +02:00
parent 12501fb1cd
commit 91c2ff1215
4 changed files with 547 additions and 397 deletions

File diff suppressed because it is too large Load Diff

View File

@ -22,4 +22,4 @@ LAVA_VISC = minetest.registered_nodes["default:lava_source"].liquid_viscosity
LIGHT_MAX = default.LIGHT_MAX
-- Formspecs
default.gui_survival_form = default.gui_survival_form
default.gui_survival_form = default.gui_survival_form

View File

@ -26,6 +26,7 @@ function doors.register_door(name, def)
def.sound_open_door = "doors_door_open"
end
minetest.register_craftitem(name, {
description = def.description,
inventory_image = def.inventory_image,

View File

@ -152,7 +152,7 @@ minetest.register_abm({
-- Remove flammable nodes and flame
minetest.register_abm({
nodenames = {"fire:basic_flame"},
interval = 1,
interval = 3,
chance = 2,
action = function(p0, node, _, _)
-- If there is water or stuff like that around flame, remove flame
@ -186,3 +186,4 @@ minetest.register_abm({
end
end,
})