mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 20:11:06 +01:00
Fix embarrassing monster egg typo
This commit is contained in:
parent
db77144ceb
commit
305aacf705
2 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,7 @@ local register_block = function(subname, description, tiles, is_ground_content)
|
||||||
if is_ground_content == nil then
|
if is_ground_content == nil then
|
||||||
is_ground_content = false
|
is_ground_content = false
|
||||||
end
|
end
|
||||||
minetest.register_node("mcl_monster_eggs:monter_egg_"..subname, {
|
minetest.register_node("mcl_monster_eggs:monster_egg_"..subname, {
|
||||||
description = description,
|
description = description,
|
||||||
tiles = tiles,
|
tiles = tiles,
|
||||||
is_ground_content = is_ground_content,
|
is_ground_content = is_ground_content,
|
||||||
|
|
|
@ -3,4 +3,5 @@ mcl_util
|
||||||
mcl_core
|
mcl_core
|
||||||
mcl_cocoas
|
mcl_cocoas
|
||||||
mcl_stairs
|
mcl_stairs
|
||||||
|
mcl_monster_eggs
|
||||||
mcl_structures
|
mcl_structures
|
||||||
|
|
Loading…
Reference in a new issue