forked from MTSR/moreblocks
Add support for minetest game pine tree.
This commit is contained in:
parent
cd65ed0930
commit
41bb46fb36
@ -1,9 +1,9 @@
|
|||||||
zlib license
|
zlib license
|
||||||
============
|
============
|
||||||
|
|
||||||
Copyright (c) 2011-2014 Calinou and contributors
|
Copyright (c) 2011-2015 Calinou and contributors
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
|
**This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.**
|
||||||
|
|
||||||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
|
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
|
||||||
|
|
11
README.md
Normal file
11
README.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
More Blocks
|
||||||
|
===========
|
||||||
|
|
||||||
|
More Blocks for Minetest <http://minetest.net>, a free/libre infinite
|
||||||
|
world block sandbox game.
|
||||||
|
|
||||||
|
To install, just clone this repository into your "mods" directory.
|
||||||
|
|
||||||
|
More Blocks code is licensed under the zlib license, textures are by Calinou and are licensed under CC BY-SA 3.0 Unported.
|
||||||
|
|
||||||
|
**Forum topic:** <https://forum.minetest.net/viewtopic.php?f=11&t=509>
|
12
README.txt
12
README.txt
@ -1,12 +0,0 @@
|
|||||||
More Blocks
|
|
||||||
===========
|
|
||||||
|
|
||||||
More Blocks for Minetest (http://minetest.net), a free and open source infinite
|
|
||||||
world block sandbox game.
|
|
||||||
|
|
||||||
To install, just clone this repository into your "mods" directory.
|
|
||||||
|
|
||||||
More Blocks code is under the zlib license, textures are under CC BY-SA 3.0 unported.
|
|
||||||
|
|
||||||
Forum topic: http://forum.minetest.net/viewtopic.php?id=509
|
|
||||||
|
|
2
init.lua
2
init.lua
@ -3,7 +3,7 @@
|
|||||||
** More Blocks **
|
** More Blocks **
|
||||||
By Calinou, with the help of ShadowNinja and VanessaE.
|
By Calinou, with the help of ShadowNinja and VanessaE.
|
||||||
|
|
||||||
Copyright (c) 2011-2014 Calinou and contributors.
|
Copyright (c) 2011-2015 Calinou and contributors.
|
||||||
Licensed under the zlib license. See LICENSE.txt for more information.
|
Licensed under the zlib license. See LICENSE.txt for more information.
|
||||||
======================================================================
|
======================================================================
|
||||||
--]]
|
--]]
|
||||||
|
@ -33,12 +33,14 @@ end
|
|||||||
|
|
||||||
register_stairsplus_alias("stairsplus", "stone", "stone")
|
register_stairsplus_alias("stairsplus", "stone", "stone")
|
||||||
register_stairsplus_alias("stairsplus", "wood", "wood")
|
register_stairsplus_alias("stairsplus", "wood", "wood")
|
||||||
|
register_stairsplus_alias("stairsplus", "pinewood", "pinewood")
|
||||||
register_stairsplus_alias("stairsplus", "cobble", "cobble")
|
register_stairsplus_alias("stairsplus", "cobble", "cobble")
|
||||||
register_stairsplus_alias("stairsplus", "brick", "brick")
|
register_stairsplus_alias("stairsplus", "brick", "brick")
|
||||||
register_stairsplus_alias("stairsplus", "sandstone", "sandstone")
|
register_stairsplus_alias("stairsplus", "sandstone", "sandstone")
|
||||||
register_stairsplus_alias("stairsplus", "glass", "glass")
|
register_stairsplus_alias("stairsplus", "glass", "glass")
|
||||||
register_stairsplus_alias("stairsplus", "tree", "tree")
|
register_stairsplus_alias("stairsplus", "tree", "tree")
|
||||||
register_stairsplus_alias("stairsplus", "jungletree", "jungletree")
|
register_stairsplus_alias("stairsplus", "jungletree", "jungletree")
|
||||||
|
register_stairsplus_alias("stairsplus", "pinetree", "pinetree")
|
||||||
register_stairsplus_alias("stairsplus", "desert_stone", "desert_stone")
|
register_stairsplus_alias("stairsplus", "desert_stone", "desert_stone")
|
||||||
register_stairsplus_alias("stairsplus", "steelblock", "steelblock")
|
register_stairsplus_alias("stairsplus", "steelblock", "steelblock")
|
||||||
register_stairsplus_alias("stairsplus", "mossycobble", "mossycobble")
|
register_stairsplus_alias("stairsplus", "mossycobble", "mossycobble")
|
||||||
|
@ -16,6 +16,8 @@ local default_nodes = { -- Default stairs/slabs/panels/microblocks:
|
|||||||
"wood",
|
"wood",
|
||||||
"jungletree",
|
"jungletree",
|
||||||
"junglewood",
|
"junglewood",
|
||||||
|
"pinetree",
|
||||||
|
"pinewood",
|
||||||
"obsidian",
|
"obsidian",
|
||||||
"obsidian_glass",
|
"obsidian_glass",
|
||||||
"stonebrick",
|
"stonebrick",
|
||||||
|
Loading…
Reference in New Issue
Block a user