
Missing macerator recipes for sandstone from Oh The Biomes You'll Go
DmitryProskurin opened this issue ยท 4 comments
There are blue, black, white and purple pink sandstones that can't be crashed into macerators.
I fix it by adding that code to macerator.js:
const BYG_SAND_COLORS = [
'blue',
'black',
'white',
'pink'
];
BYG_SAND_COLORS.forEach(color => {
macerator(
st(`${color}_sand_from_sandstone`),
2,
100,
[ { amount: 1, item: `byg:${color}_sandstone` } ],
[ { amount: 4, item: `byg:${color}_sand` } ]
);
});
and that to large_steam_macerator.js:
const BYG_SAND_COLORS = [
'blue',
'black',
'white',
'pink'
];
BYG_SAND_COLORS.forEach(color => {
lsm(
st(`${color}_sand_from_sandstone`),
powerConstant,
100 * timeMultiplier,
[ { amount: 8, item: `byg:${color}_sandstone` } ],
[ { amount: 32, item: `byg:${color}_sand` } ]
);
});
@GW-Dev, sure, i have nothing against it.
Fixed in #520.