1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-03 14:53:01 +02:00

Lowered uranium density in main vein

This commit is contained in:
Lynn 2018-11-29 19:27:25 +01:00
parent 700fdd16a1
commit 5cc6afe8c4
2 changed files with 6 additions and 6 deletions

View File

@ -445,8 +445,8 @@ to reinforce it further.
commands.add_command('toggle-cave-collapse', 'Toggles cave collapse (admins only).', function()
pcall(function() --better safe than sorry
if not game.player or game.player.admin then
cave_collapse_disabled = not cave_collapse_disabled
if cave_collapse_disabled then
global.cave_collapse_disabled = not global.cave_collapse_disabled
if global.cave_collapse_disabled then
game.print("Cave collapse: Disabled.")
else
game.print("Cave collapse: Enabled.")

View File

@ -42,14 +42,14 @@ return {
['copper-ore'] = 215,
['iron-ore'] = 389,
['stone'] = 212,
['uranium-ore'] = 21,
['uranium-ore'] = 5,
},
distances = {
['coal'] = 16,
['copper-ore'] = 18,
['iron-ore'] = 18,
['stone'] = 15,
['uranium-ore'] = 86,
['uranium-ore'] = 120,
}, },
{ -- tendril default small
yield=1.0,
@ -78,7 +78,7 @@ return {
['copper-ore'] = 18,
['iron-ore'] = 18,
['stone'] = 15,
['uranium-ore'] = 86,
['uranium-ore'] = 120,
},
},
{ -- tendril default fragments coal
@ -217,4 +217,4 @@ return {
['crude-oil'] = 57,
},
},
}
}