The "tags" condition cannot be relied upon anymore. This expression in the [testing lambda](https://github.com/TechReborn/RebornCore/blob/1.16/src/main/java/reborncore/common/crafting/ConditionManager.java#L56): ```java ItemTags.getContainer().getEntries() ``` always returns an empty map. I tried experimenting with a bit: ```java Set<Identifier> entries = ItemTags.method_29214(BlockTags.getContainer()); ``` which gives me all vanilla-registered item tags at least, but no modded ones. This breaks eg. Blockus compatibility.
The "tags" condition cannot be relied upon anymore. This expression in the testing lambda:
always returns an empty map. I tried experimenting with a bit:
which gives me all vanilla-registered item tags at least, but no modded ones. This breaks eg. Blockus compatibility.