Page MenuHome1F616EMO Bugtracker

No OneTemporary

Size
4 KB
Referenced Files
None
Subscribers
None
diff --git a/ethereal_mod/init.lua b/ethereal_mod/init.lua
index 9d23bb9..076129f 100644
--- a/ethereal_mod/init.lua
+++ b/ethereal_mod/init.lua
@@ -1,42 +1,42 @@
-- twi_mods/ethereal_mod/init.lua
--- Give initial stuffs to new players
+-- Ethereal modifications
--[[
Copyright © 2024 1F616EMO
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
]]
-- place_param2 = 0
local node_list = {
"ethereal:basandra_wood",
"ethereal:sakura_wood",
"ethereal:willow_wood",
"ethereal:redwood_wood",
"ethereal:frost_wood",
"ethereal:yellow_wood",
"ethereal:palm_wood",
"ethereal:banana_wood",
"ethereal:birch_wood",
"ethereal:olive_wood",
}
for _, name in ipairs(node_list) do
minetest.override_item(name, {
place_param2 = 0
})
end
diff --git a/moreblocks_mod/LICENSE.md b/moreblocks_mod/LICENSE.md
new file mode 100644
index 0000000..67f5f7f
--- /dev/null
+++ b/moreblocks_mod/LICENSE.md
@@ -0,0 +1,13 @@
+# zlib license
+
+Copyright © 2011-2020 Hugo Locurcio 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.**
+
+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:
+
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source distribution.
diff --git a/moreblocks_mod/init.lua b/moreblocks_mod/init.lua
new file mode 100644
index 0000000..7603d71
--- /dev/null
+++ b/moreblocks_mod/init.lua
@@ -0,0 +1,41 @@
+-- twi_mods/moreblocks_mod/init.lua
+-- Moreblocks modifications
+--[[
+ This code is licensed under the zlib license;
+ see ./LICENSE.md for more information.
+]]
+
+-- Adopt the linuxforks way of crafting stone tiles
+minetest.clear_craft({
+ output = "moreblocks:stone_tile 9",
+ recipe = {
+ {"default:cobble", "default:cobble", "default:cobble"},
+ {"default:cobble", "default:stone", "default:cobble"},
+ {"default:cobble", "default:cobble", "default:cobble"},
+ }
+})
+
+minetest.register_craft({
+ output = "moreblocks:stone_tile 4",
+ recipe = {
+ {"default:cobble", "default:cobble"},
+ {"default:cobble", "default:cobble"},
+ }
+})
+
+minetest.register_craft({
+ output = "moreblocks:stone_tile 36",
+ recipe = {
+ {"moreblocks:cobble_compressed", "moreblocks:cobble_compressed"},
+ {"moreblocks:cobble_compressed", "moreblocks:cobble_compressed"},
+ }
+})
+
+-- Allow compressed cobbles to be smelt into stone
+
+minetest.register_craft({
+ type = "cooking",
+ output = "default:stone 9",
+ recipe = "moreblocks:cobble_compressed",
+ cooktime = 3 * 8,
+})
\ No newline at end of file
diff --git a/moreblocks_mod/mod.conf b/moreblocks_mod/mod.conf
new file mode 100644
index 0000000..3bea739
--- /dev/null
+++ b/moreblocks_mod/mod.conf
@@ -0,0 +1,2 @@
+name = moreblocks_mod
+depends = moreblocks
\ No newline at end of file

File Metadata

Mime Type
text/x-diff
Expires
Wed, Mar 4, 1:07 AM (1 d, 4 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3a/98/c62d8bbcbd6c3e96b6b02b1fd0d3
Default Alt Text
(4 KB)

Event Timeline