How do you remove default copper in 0.4.6?
While playing 0n 0.4.6, and with the more ores mod, there is a ton of copper, how do I remove/disable it. Do I wan't the default mod folder?
FOSS gamedev and creative worlds
https://forums.minetest.org/
tinoesroho wrote:Actually, what I mean is this:
1. Open up /games/minetest_game/ (or was that common?)/default/ mapgen.lua in WordPad.
2. Find the line that reads something like this: "minetest.register_alias("mapgen_stone_with_copper", "default:stone_with_copper")"
3. Replace "default:stone_with_copper" with "default:stone_with_iron".
Happy mining.
EDIT: This should stop the default engine from spawning copper. I don't know if base moreores still has copper, but if it does, it will still spawn. Just not in the same quantities.
PilzAdam wrote:tinoesroho wrote:Actually, what I mean is this:
1. Open up /games/minetest_game/ (or was that common?)/default/ mapgen.lua in WordPad.
2. Find the line that reads something like this: "minetest.register_alias("mapgen_stone_with_copper", "default:stone_with_copper")"
3. Replace "default:stone_with_copper" with "default:stone_with_iron".
Happy mining.
EDIT: This should stop the default engine from spawning copper. I don't know if base moreores still has copper, but if it does, it will still spawn. Just not in the same quantities.
That is absolutly wrong.
The correct path is games/common/mods/default/mapgen.lua and you dont have to find the alias line (there is none for copper) but the register ore call for copper. Then comment it out with -- at the beginning of the line(s).
tinoesroho wrote:Actually, what I mean is this:
1. Open up /games/minetest_game/ (or was that common?)/default/ mapgen.lua in WordPad.
2. Find the line that reads something like this: "minetest.register_alias("mapgen_stone_with_copper", "default:stone_with_copper")"
3. Replace "default:stone_with_copper" with "default:stone_with_iron".
Happy mining.
EDIT: This should stop the default engine from spawning copper. I don't know if base moreores still has copper, but if it does, it will still spawn. Just not in the same quantities.
PilzAdam wrote:tinoesroho wrote:Actually, what I mean is this:
1. Open up /games/minetest_game/ (or was that common?)/default/ mapgen.lua in WordPad.
2. Find the line that reads something like this: "minetest.register_alias("mapgen_stone_with_copper", "default:stone_with_copper")"
3. Replace "default:stone_with_copper" with "default:stone_with_iron".
Happy mining.
EDIT: This should stop the default engine from spawning copper. I don't know if base moreores still has copper, but if it does, it will still spawn. Just not in the same quantities.
That is absolutly wrong.
The correct path is games/common/mods/default/mapgen.lua and you dont have to find the alias line (there is none for copper) but the register ore call for copper. Then comment it out with -- at the beginning of the line(s).
BAGPIPE wrote:I searched mapgen and found no ocurence of "minetest.register_ore" . Nevermind found it but it didn't do anything
Zeg9 wrote:BAGPIPE wrote:I searched mapgen and found no ocurence of "minetest.register_ore" . Nevermind found it but it didn't do anything
Why didn't you do my alias thing ? Never mind...