1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-09-16 09:16:22 +02:00

Merge pull request #479 from iltar/reduced-uranium-in-main-vein

Lowered uranium density in main vein
This commit is contained in:
grilledham
2018-11-29 18:59:54 +00:00
committed by GitHub
2 changed files with 9 additions and 9 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

@@ -41,15 +41,15 @@ return {
['coal'] = 160,
['copper-ore'] = 215,
['iron-ore'] = 389,
['stone'] = 212,
['uranium-ore'] = 21,
['stone'] = 182,
['uranium-ore'] = 6,
},
distances = {
['coal'] = 16,
['copper-ore'] = 18,
['iron-ore'] = 18,
['stone'] = 15,
['uranium-ore'] = 86,
['uranium-ore'] = 120,
}, },
{ -- tendril default small
yield=1.0,
@@ -70,15 +70,15 @@ return {
['coal'] = 160,
['copper-ore'] = 215,
['iron-ore'] = 389,
['stone'] = 212,
['uranium-ore'] = 21,
['stone'] = 182,
['uranium-ore'] = 30,
},
distances = {
['coal'] = 16,
['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,
},
},
}
}