1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-02-03 22:00:19 +01:00

[mff_classic] Fix missing ':'

This commit is contained in:
LeMagnesium 2016-08-21 00:33:37 +02:00
parent 5f17957058
commit de7e806425
No known key found for this signature in database
GPG Key ID: A54DDB5272C51E8B

View File

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