Better Furnaces Reforged

Better Furnaces Reforged

552k Downloads

Dupplication Glitch with Ore Processing Upgrade

MathisSkate opened this issue ยท 8 comments

commented
commented

This is simply impossible, only ores, tagged forge:ores, can be duplicated by being burned, at least if these ore dust from other mods are incorrectly tagged

commented

I use all the ores

commented

I see the tags but there is only the dust tag not the forge ores

commented

protected boolean isOre(ItemStack input) {
return (input.getItem().is(ore) || input.getItem().getRegistryName().toString().contains("ore"));
}

Its here in the AbstractSmetingTile class you check the registry names but alltheores as this string (ore) 
Is that 
commented

I checked with AllTheOres, TwilightForest, IndustrialForegoing all smelted items are doubling because of input.getItem().getRegistryName().toString().contains("ore")

the modid contains ore (f'ore'going, f'ore'st, allthe'ore's) that mean all smelted item are doubling

commented

Ah, thanks for demonstrating this inconsistency, I had forgotten that I used this method at a time when the tags didn't work correctly in 1.16.5 version. I will fix it in the actual released version

commented

That's what happens when you manage different versions at the same time lol

commented

No problem !

See yah