From d8c6a4f2ea3f190d823ddb57634b3e9bd8734287 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Sun, 24 Mar 2013 22:33:53 +0100 Subject: [PATCH] Add external_legacy mod with aliases for moreores' ores --- mods/external_legacy/README.txt | 18 ++++++++++++++++++ mods/external_legacy/init.lua | 8 ++++++++ 2 files changed, 26 insertions(+) create mode 100644 mods/external_legacy/README.txt create mode 100644 mods/external_legacy/init.lua diff --git a/mods/external_legacy/README.txt b/mods/external_legacy/README.txt new file mode 100644 index 00000000..6451fec3 --- /dev/null +++ b/mods/external_legacy/README.txt @@ -0,0 +1,18 @@ +Minetest 0.4 mod: external_legacy +================================= + +License of source code: +----------------------- +Copyright (C) 2013 celeron55, Perttu Ahola + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or +(at your option) any later version. + +http://www.gnu.org/licenses/lgpl-2.1.html + +License of media (textures and sounds) +-------------------------------------- +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/mods/external_legacy/init.lua b/mods/external_legacy/init.lua new file mode 100644 index 00000000..82c76dd5 --- /dev/null +++ b/mods/external_legacy/init.lua @@ -0,0 +1,8 @@ +-- Minetest 0.4 mod: external_legacy +-- See README.txt for licensing and other information. + +-- Aliases to support moreores' ores +minetest.register_alias("moreores:mineral_gold", "default:stone_with_gold") +minetest.register_alias("moreores:gold_block", "default:goldblock") +minetest.register_alias("moreores:gold_lump", "default:gold_lump") +minetest.register_alias("moreores:gold_ingot", "default:gold_ingot")