No access to Refined Bee Line
BeesKneeesGeez opened this issue ยท 2 comments
Although JEI lists the Oily, Distilled, and Refined bees, there seems to be no way to breed them. The master registry lists no possible mutation for Primeval and Modest, and does not include Oily and Refined in the database. Distilled is listed, but without any way to breed it.
Binnie's Mod 1.12.2-2.5.0.160
Minecraft 1.12.2
Forge 1.12.2-14.23.2.2654
Availability of bees is configured in this section of the code.
Bee will be add to black list (no breeding recipe) if its product items or specialization (also items) do not exist in the current assembly of minecraft. Usually there is no mod that adds this item
For example Distilled: is not in black list but it depends on OIL
OIL bee is in black list because where is no oil fluid in your game.
Code:
.addSpecialty(EnumHoneyComb.OIL.get(1), 0.05f);
trying to register bee spec.In general, if you add a mod that will register the liquid "Oil", then the corresponding bee will become available.
Similar logic works for other bees without breeding.