Initial commit

This commit is contained in:
Evert Prants 2018-04-07 13:02:58 +03:00
commit b548f8d8c2
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
5 changed files with 43 additions and 0 deletions

18
LICENSE.txt Normal file
View File

@ -0,0 +1,18 @@
The MIT License
Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
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.

12
README.md Normal file
View File

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

9
init.lua Normal file
View File

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

3
mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = storagetest
description = A solution to your hoarding addiction.
optional_depends = default

1
nodes.lua Normal file
View File

@ -0,0 +1 @@
-- Storagetest nodes