You got an old version (i dont know how to update the versions properly, ie change file versions) where there was that bugg of turnig 1 gravel into 249 shifted ones.
It was up about 1 hour. The frist version you shifted 250 gravel at a time, but then your yield in gold, silver and platinum was based on 250 a piece.
With your current version its unplayable in short, if you can change things by yourself you go to: mods, prototypes, materials, gravel.lua ad change the recipie to
--require("prototypes.processing.pulverizer")
data:extend({
{
type = "item",
name = "gravel",
icon = "Engineersvsenvironmentalist/graphics/icons/materials/gravel.png",
flags = {"goes-to-main-inventory"},
subgroup = "stone-base",
order = "g1[other]",
stack_size = 250
},
{
type = "item",
name = "processed-gravel",
icon = "Engineersvsenvironmentalist/graphics/icons/materials/gravel-processed.png",
flags = {"goes-to-main-inventory"},
subgroup = "stone-base",
order = "g1[other]",
stack_size = 750
},
{
type = "recipe",
name = "gravel-crushing",
icon = "Engineersvsenvironmentalist/graphics/icons/materials/sand.png",
category = "crusher",
subgroup = "basic-processing",
order ="a-3",
energy_required = 1,
enabled = true,
ingredients =
{
{type="item", name="gravel", amount=10},
},
results = {{"gravel",8},{"sand",2}},
},
{
type = "recipe",
name = "gravel-sifting",
icon = "Engineersvsenvironmentalist/graphics/icons/materials/gravel-processed.png",
category = "sifter",
subgroup = "basic-processing",
order ="a-4",
energy_required = 1,
enabled = true,
ingredients =
{
{"gravel", 2},
},
results=
{
{"processed-gravel",2},
{type="item",name="gold-ore", probability=0.0001, amount_min=1, amount_max=1},
{type="item",name="silver-ore", probability=0.001, amount_min=1, amount_max=1},
{type="item",name="platinum-grain", probability=0.00001, amount_min=1, amount_max=1},
}
},
THe faulty line stated:
{"processed-gravel",249},
It should be:
{"processed-gravel",2},
I do not know the source of some of the things in this mod, I got in a few months into the project.
Seems like I got to ask the guys starting it and remove things or get persmission.