diff --git a/LICENSE b/LICENSE deleted file mode 100644 index e4a11f3..0000000 --- a/LICENSE +++ /dev/null @@ -1,26 +0,0 @@ -"/modlib/" directory: Copright (c) respective owners, see directories within the "/modlib/" directory -for their respective licenses (License.txt, LICENSE, license.md). - -for all other files outside of "/modlib/" directory: - -MIT License - -Copyright (c) 2023 FatalError42O, Trevor Pasquali. - -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/modlib/License.txt b/License.txt similarity index 100% rename from modlib/License.txt rename to License.txt diff --git a/modlib/binary.lua b/binary.lua similarity index 100% rename from modlib/binary.lua rename to binary.lua diff --git a/init.lua b/init.lua index 0809f1e..ab06a54 100644 --- a/init.lua +++ b/init.lua @@ -8,6 +8,6 @@ leef.paths = leef.paths or {} leef.loaded_modules.filesystem = true --run files. These will directly modify the leef sub tables. local path = minetest.get_modpath("leef_filesystem") -dofile(path.."/modlib/binary.lua") -dofile(path.."/modlib/mod_utils.lua") -dofile(path.."/modlib/paths.lua") +dofile(path.."/binary.lua") +dofile(path.."/mod_utils.lua") +dofile(path.."/paths.lua") diff --git a/modlib/mod_utils.lua b/mod_utils.lua similarity index 100% rename from modlib/mod_utils.lua rename to mod_utils.lua diff --git a/modlib/paths.lua b/paths.lua similarity index 100% rename from modlib/paths.lua rename to paths.lua