-
Notifications
You must be signed in to change notification settings - Fork 580
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add external_legacy mod with aliases for moreores' ores
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Minetest 0.4 mod: external_legacy | ||
================================= | ||
|
||
License of source code: | ||
----------------------- | ||
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com> | ||
|
||
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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") |