#Weirdness with Create: Addon Compatibility

1 messages · Page 1 of 1 (latest)

past oracle
#

So, with Create: Addon Compatibility (https://github.com/Amronos/createaddoncompatibility) installed, there's a duplicate liquid burning recipe for bioethanol, because it adds the #forge:ethanol tag to it. Annoyingly, it seems to prefer using that recipe. The thing is, them adding the ethanol tag is not even a bad idea, but it has this presumably unforeseen consequence.
Is there a condition to exclude certain items from a recipe? Because then fixing it would just involve adding a condition to the ethanol liquid burning recipe that the item is not bioethanol

GitHub

An addon for the addons of the create mod. Contribute to Amronos/createaddoncompatibility development by creating an account on GitHub.

past oracle
#

In the meantime, I disabled the ethanol recipe with kubejs, because it's not used for anything else

ServerEvents.recipes((event) => {event.remove({ id: "createaddition:liquid_burning/ethanol"})});