2016-08-26 01:33:39 -07:00
|
|
|
--[[ LICENSE HEADER
|
|
|
|
|
2017-05-03 18:58:48 -07:00
|
|
|
MIT License
|
2016-08-26 01:33:39 -07:00
|
|
|
|
2017-05-03 18:58:48 -07:00
|
|
|
Copyright © 2017 Jordan Irwin
|
2016-08-26 01:33:39 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2016-09-03 14:22:34 -07:00
|
|
|
|
|
|
|
-- NOTE: This mod depends on the method 'minetest.unregister_item()' by paly2.
|
|
|
|
-- As of writing, the Mineteset main branch does not include it.
|
|
|
|
|
2016-08-29 17:30:51 -07:00
|
|
|
antum.overrides = {}
|
|
|
|
antum.overrides.modname = minetest.get_current_modname()
|
|
|
|
antum.overrides.modpath = minetest.get_modpath(antum.overrides.modname)
|
2016-08-26 01:33:39 -07:00
|
|
|
|
2017-05-03 20:07:21 -07:00
|
|
|
--local scripts = {
|
|
|
|
antum.loadScripts({
|
|
|
|
'items',
|
|
|
|
'entities',
|
|
|
|
'misc',
|
|
|
|
'nodes',
|
|
|
|
'crafting',
|
2017-06-21 02:16:02 -07:00
|
|
|
'temp_fixes',
|
2017-05-03 20:07:21 -07:00
|
|
|
})
|