From b548f8d8c2b0c0ddde0a7943751273cd193cffe3 Mon Sep 17 00:00:00 2001 From: Evert Date: Sat, 7 Apr 2018 13:02:58 +0300 Subject: [PATCH] Initial commit --- LICENSE.txt | 18 ++++++++++++++++++ README.md | 12 ++++++++++++ init.lua | 9 +++++++++ mod.conf | 3 +++ nodes.lua | 1 + 5 files changed, 43 insertions(+) create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 init.lua create mode 100644 mod.conf create mode 100644 nodes.lua diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..cab9bbe --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,18 @@ +The MIT License + +Copyright 2018 Evert "Diamond" Prants + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..edf5751 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Storagetest +A solution to your hoarding addiction. In [Minetest](http://minetest.net). + +This mod is an attempt at re-creating [Refined Storage](https://github.com/raoulvdberge/refinedstorage) +in Minetest. I can't promise that this will ever be completed, but we'll see. Help is always welcome. + +Currently, it is geared towards and developed in Minetest 0.5.0+, backports are not planned right now. + +# License +The MIT License + +See [LICENSE](LICENSE.txt) diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..bdbdd11 --- /dev/null +++ b/init.lua @@ -0,0 +1,9 @@ +-- Storagetest + +storagetest = rawget(_G, "storagetest") or {} + +local modpath = minetest.get_modpath(minetest.get_current_modname()) +storagetest.modpath = modpath + +-- Nodes +dofile(modpath.."/nodes.lua") diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..61883c7 --- /dev/null +++ b/mod.conf @@ -0,0 +1,3 @@ +name = storagetest +description = A solution to your hoarding addiction. +optional_depends = default diff --git a/nodes.lua b/nodes.lua new file mode 100644 index 0000000..cfa185d --- /dev/null +++ b/nodes.lua @@ -0,0 +1 @@ +-- Storagetest nodes