
Bug: 1x compressed blocks have inconsistent in- & outputs
RaeTheGit opened this issue ยท 4 comments
MC Version: 1.20.1
NeoForge version: 47.1.105
Mod version: 1.20.1-1.8.1 (most recent release for 1.20.1 on Modrinth)
As said in the title, when extracting a 1x compressed raw ore block (gold, copper, iron), which is crafted with 9 raw ore blocks, it extracts to 9 ore items instead of the blocks.
For others running into this issue, my workaround is this KubeJS server script until the bug is fixed:
ServerEvents.recipes(event => {
// fix 1x compressed ore blocks
let fix1xExtraction = (oreMaterial) => {
var thisInputItem = 'createcompression:compressed_raw_' + oreMaterial + '_1x';
var thisOrigOutput = 'minecraft:raw_' + oreMaterial;
var thisNewOutput = 'minecraft:raw_' + oreMaterial + '_block';
event.replaceOutput(
{ input: thisInputItem, output: thisOrigOutput },
thisOrigOutput,
thisNewOutput
);
};
[
'gold',
'copper',
'iron'
].forEach((oreMaterial) => fix1xExtraction(oreMaterial));
});
Same goes for 1x compressed grass blocks which decompresses to grass, not grass blocks.
Also compressing any cobbled stones to compressed cobblestone may not be best practice. IMO that should be limited to actual minecraft:cobblestone
only.
For convenience of fellow Modrinth users, here's the tested, full KubeJS server script I use to fix the recipes until a fixed version lands on Modrinth.
Fixes input for
- Obsidian
- Glass
- Cobblestone
- Acacia, birch, dark oak, jungle, oak, and spruce logs
- Crimson and warped stems
Fixes output for 1x compressed
- Grass blocks
- Raw gold, copper, and iron blocks
ServerEvents.recipes(event => {
// fix various compression recipes
let fix1xVariousVanilla = (itemType) => {
var thisOutput = 'createcompression:compressed_' + itemType + '_1x';
var thisOrigInput = '#forge:' + itemType;
var thisNewInput = 'minecraft:' + itemType;
event.replaceInput(
{ input: thisOrigInput, output: thisOutput},
thisOrigInput,
thisNewInput
);
};
[
'obsidian',
'glass',
'cobblestone'
].forEach((itemType) => fix1xVariousVanilla(itemType));
let fix1xLogs = (logType) => {
var thisOutput = 'createcompression:compressed_' + logType + '_log_1x';
var thisOrigInput = '#minecraft:' + logType + '_logs';
var thisNewInput = 'minecraft:' + logType + '_log';
event.replaceInput(
{ input: thisOrigInput, output: thisOutput},
thisOrigInput,
thisNewInput
);
};
[
'acacia',
'birch',
'dark_oak',
'jungle',
'oak',
'spruce'
].forEach((logType) => fix1xLogs(logType));
let fix1xStems = (stemType) => {
var thisOutput = 'createcompression:compressed_' + stemType + '_stem_1x';
var thisOrigInput = '#minecraft:' + stemType + '_stems';
var thisNewInput = 'minecraft:' + stemType + '_stem';
event.replaceInput(
{ input: thisOrigInput, output: thisOutput},
thisOrigInput,
thisNewInput
);
};
[
'crimson',
'warped'
].forEach((stemType) => fix1xStems(stemType));
// fix various decompression recipes
let fix1xOreExtraction = (oreMaterial) => {
var thisInputItem = 'createcompression:compressed_raw_' + oreMaterial + '_1x';
var thisOrigOutput = 'minecraft:raw_' + oreMaterial;
var thisNewOutput = 'minecraft:raw_' + oreMaterial + '_block';
event.replaceOutput(
{ input: thisInputItem, output: thisOrigOutput },
thisOrigOutput,
thisNewOutput
)
};
[
'gold',
'copper',
'iron'
].forEach((oreMaterial) => fix1xOreExtraction(oreMaterial));
event.replaceOutput(
{ input: 'createcompression:compressed_grass_1x', output: 'minecraft:grass'},
'minecraft:grass',
'minecraft:grass_block'
);
});