Fixed coals

This commit is contained in:
Kotolegokot 2012-12-19 23:12:49 +06:00
parent 48375b5422
commit eb997601a4
4 changed files with 9 additions and 16 deletions

View File

@ -2,7 +2,6 @@ MINERALS_LIST={
'lapis',
'anthracite',
'lignite',
'coal',
'bituminous_coal',
'magnetite',
'hematite',
@ -45,7 +44,6 @@ MINERALS_DESC_LIST={
'Lapis',
'Anthracite',
'Lignite',
'Coal',
'Bituminous coal',
'Magnetite',
'Hematite',
@ -111,14 +109,14 @@ minetest.register_craft({
minetest.register_craft({
type = "fuel",
recipe = "minerals:brown_coal",
recipe = "minerals:lignite",
burntime = 25,
})
minetest.register_craft({
type = "fuel",
recipe = "minerals:coal",
burntime = 40,
recipe = "minerals:bituminous_coal",
burntime = 35,
})
minetest.register_craft({
@ -127,8 +125,4 @@ minetest.register_craft({
burntime = 50,
})
minetest.register_craft({
type = "fuel",
recipe = "minerals:bituminous_coal",
burntime = 25,
})
minetest.register_alias("minerals:brown_coal", "minerals:lignite")

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 B

View File

@ -322,10 +322,9 @@ end
minetest.register_on_generated(function(minp, maxp, seed)
local pr = PseudoRandom(seed)
local gen_ores = {
{"ores:lignite", -3000, -1000},
{"ores:coal", -6000, -3000},
{"ores:anthracite", -31000, -6000},
{"ores:bituminous_coal"},
{"ores:lignite", -3000, -500},
{"ores:bituminous_coal", -6000, -3000},
{"ores:anthracite", -8000, -6000},
{"ores:bismuthinite"},
{"ores:magnetite"},
{"ores:hematite"},
@ -345,7 +344,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
{'ores:cryolite'},
{'ores:galena'},
{'ores:garnierite'},
{'ores:graphite'},
{'ores:graphite', -31000, -8000},
{'ores:gypsum'},
{'ores:jet'},
{'ores:kaolinite'},
@ -434,5 +433,5 @@ minetest.register_craft({
minetest.register_craft({
type = "fuel",
recipe = "ores:peat",
burntime = 25,
burntime = 15,
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 998 B