Merge remote-tracking branch 'refs/remotes/minetest-mods/master'

This commit is contained in:
FaceDeer
2017-04-30 15:00:36 -06:00
6 changed files with 32 additions and 9 deletions

10
CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [1.0.0] - 2017-02-19
- Initial versioned release.

10
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,10 @@
# Contribution Guide
Thank you for your interest in this mod! Before contributing, be sure to know
about these few guidelines:
- Contributions have to be under the zlib license (or compatible) for code,
and CC BY-SA 3.0 license (or compatible) for assets.
- Make sure to update the change log, keeping the
[change log format](http://keepachangelog.com/) we use.
- Don't bump the version yourself. Maintainers will do this when necessary.

View File

@ -1,7 +1,6 @@
zlib license # zlib license
============
Copyright (c) 2011-2015 Calinou and contributors Copyright (c) 2011-2017 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.** **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.**

View File

@ -1,6 +1,6 @@
## More Ores # More Ores
More Ores for Minetest <http://minetest.net>, a free/libre infinite More Ores for [Minetest](http://minetest.net), a free and open source infinite
world block sandbox game. world block sandbox game.
It adds three new ores: silver, tin, and mithril. The ores can be enabled independently It adds three new ores: silver, tin, and mithril. The ores can be enabled independently

View File

@ -3,7 +3,7 @@
** More Ores ** ** More Ores **
By Calinou, with the help of Nore. By Calinou, with the help of Nore.
Copyright (c) 2011-2017 Calinou and contributors. Copyright (c) 2011-2017 Hugo Locurcio and contributors.
Licensed under the zlib license. See LICENSE.md for more information. Licensed under the zlib license. See LICENSE.md for more information.
===================================================================== =====================================================================
--]] --]]
@ -14,9 +14,13 @@ moreores = {}
local modpath = minetest.get_modpath("moreores") local modpath = minetest.get_modpath("moreores")
local S, NS = dofile(modpath.."/intllib.lua") local S, NS = dofile(modpath.."/intllib.lua")
dofile(modpath .. "/readsettings.lua")
dofile(modpath .. "/loot.lua") dofile(modpath .. "/loot.lua")
dofile(modpath .. "/mg.lua") dofile(modpath .. "/readsettings.lua")
-- `mg` support:
if minetest.get_modpath("mg") then
dofile(modpath .. "/mg.lua")
end
-- Utility functions -- Utility functions
-- ================= -- =================

2
mg.lua
View File

@ -1,7 +1,7 @@
--[[ --[[
More Ores: `mg` mod support More Ores: `mg` mod support
Copyright (c) 2011-2015 Calinou and contributors. Copyright (c) 2011-2017 Hugo Locurcio and contributors.
Licensed under the zlib license. See LICENSE.md for more information. Licensed under the zlib license. See LICENSE.md for more information.
--]] --]]
if not minetest.get_modpath("mg") then if not minetest.get_modpath("mg") then