mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-02-04 06:10:16 +01:00
[mff_classic] Fix missing ':'
This commit is contained in:
parent
5f17957058
commit
de7e806425
@ -2,7 +2,7 @@ local modname = minetest.get_current_modname()
|
|||||||
|
|
||||||
-- From BFD:
|
-- From BFD:
|
||||||
|
|
||||||
minetest.register_node(modname .. 'mg_cherry_sapling', {
|
minetest.register_node(modname .. ':mg_cherry_sapling', {
|
||||||
description = "Impossible to get node.",
|
description = "Impossible to get node.",
|
||||||
drawtype = 'airlike',
|
drawtype = 'airlike',
|
||||||
paramtype = 'light',
|
paramtype = 'light',
|
||||||
@ -10,7 +10,7 @@ minetest.register_node(modname .. 'mg_cherry_sapling', {
|
|||||||
groups = {not_in_creative_inventory=1},
|
groups = {not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
local c_mg_cherry_sapling = minetest.get_content_id(modname .. 'mg_cherry_sapling')
|
local c_mg_cherry_sapling = minetest.get_content_id(modname .. ':mg_cherry_sapling')
|
||||||
|
|
||||||
minetest.register_on_generated(function(minp, maxp, seed)
|
minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
local timer = os.clock()
|
local timer = os.clock()
|
||||||
|
Loading…
Reference in New Issue
Block a user