[christmas] Update to Git patch 7ffdc67:
https://github.com/AntumDeluge/mtmod-christmas/tree/7ffdc67
This commit is contained in:
parent
3d1f7fcfdc
commit
dcf84dca2c
@ -507,7 +507,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
||||
[patch.castle_tapestries]: https://github.com/AntumDeluge/mtmod-castle_tapestries/tree/4e70f1b
|
||||
[patch.castle_weapons]: https://github.com/AntumDeluge/mtmod-castle_weapons/tree/3e4ec4d
|
||||
[patch.chatlog]: https://github.com/AntumDeluge/mtmod-chatlog/tree/ba6dabf
|
||||
[patch.christmas]: https://github.com/AntumDeluge/mtmod-christmas/tree/f6c8dc2
|
||||
[patch.christmas]: https://github.com/AntumDeluge/mtmod-christmas/tree/7ffdc67
|
||||
[patch.clean]: https://github.com/AntumDeluge/mtmod-clean/tree/6ba5bad
|
||||
[patch.cme]: https://github.com/AntumDeluge/mtmp-cme/tree/27234af
|
||||
[patch.compassgps]: https://github.com/AntumDeluge/mtmod-compassgps/tree/1d7e6a7
|
||||
|
@ -136,8 +136,8 @@ minetest.register_node("christmas:ligs", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
})
|
||||
@ -160,8 +160,8 @@ minetest.register_node("christmas:stoc", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
})
|
||||
@ -184,8 +184,8 @@ minetest.register_node("christmas:gar", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
})
|
||||
@ -207,8 +207,8 @@ minetest.register_node("christmas:slig", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
furnace_burntime = 4,
|
||||
@ -231,8 +231,8 @@ minetest.register_node("christmas:star", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
furnace_burntime = 4,
|
||||
@ -274,8 +274,8 @@ minetest.register_node("christmas:orn", {
|
||||
},
|
||||
legacy_wallmounted = true,
|
||||
on_construct = function(pos)
|
||||
--local n = minetest.env:get_node(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
--local n = minetest.get_node(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
end,
|
||||
groups = {choppy=2,dig_immediate=2},
|
||||
furnace_burntime = 4,
|
||||
|
Loading…
x
Reference in New Issue
Block a user