After the update to the server wich included the latest botania where mana petals where removed, hiveacynth/beegonia and hibeescus are no longer craftable, its an issue with magic bees where the recipes werent changed before the update hit the servers. Its fixed in the latest magic bees, but can also be restored via minetweaker.
They cant add or chanbe mods but they can fix with minetweeker[DOUBLEPOST=1454848785][/DOUBLEPOST] Code: #Temp bee/botania fix mods.botania.Apothecary.removeRecipe("beegonia"); mods.botania.Apothecary.removeRecipe("hiveacynth"); mods.botania.Apothecary.removeRecipe("hibeescus"); mods.botania.Apothecary.addRecipe("beegonia", [<ore:petalWhite>, <ore:petalYellow>, <ore:petalYellow>, <ore:petalYellow>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26> * 1]); mods.botania.Apothecary.addRecipe("hiveacynth", [<ore:petalCyan>, <ore:petalLightBlue>, <ore:petalLightBlue>, <ore:petalBlue>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:6> * 1]); mods.botania.Apothecary.addRecipe("hibeescus", [<ore:petalMagenta>, <ore:petalMagenta>, <ore:petalMagenta>, <ore:petalRed>, <ore:petalOrange>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:26>, <Botania:manaResource:6>, <Botania:rune:11>, <Botania:rune:15>, <Botania:rune:14>, <Botania:rune:5>, <Botania:rune:3> * 1]); Thanks bennyboy
right, i assumed that maybe they could update magic bees, because i was'nt thinking the fix will probably be in the next update from team ftb. However as i also noted it is quite fixable via minetweaker. I just hope they will, since i was going that route for mana.
Nice, awesome response time, just noticed that the Mana Apiary Booster suffers the same fate. If i find other recipes with the mana petal defect, ill post it in here[DOUBLEPOST=1455007710][/DOUBLEPOST] You dont think broken recipes would warrant a hotfix?
I recently just noticed this post.... and I see no one pointed out that fix to minetweaker was written wrong. The fix uses Botania:manaResource:26 which is mana powder, but with a meta data that can't be crafted thus making these recipes unusable. Botania:manaResource:23 is the proper way it should be in to make the recipes usable. The actual fix would be written as: Code: #Temp bee/botania fix mods.botania.Apothecary.removeRecipe("beegonia"); mods.botania.Apothecary.removeRecipe("hiveacynth"); mods.botania.Apothecary.removeRecipe("hibeescus"); mods.botania.Apothecary.addRecipe("beegonia", [<ore:petalWhite>, <ore:petalYellow>, <ore:petalYellow>, <ore:petalYellow>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23> * 1]); mods.botania.Apothecary.addRecipe("hiveacynth", [<ore:petalCyan>, <ore:petalLightBlue>, <ore:petalLightBlue>, <ore:petalBlue>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:6> * 1]); mods.botania.Apothecary.addRecipe("hibeescus", [<ore:petalMagenta>, <ore:petalMagenta>, <ore:petalMagenta>, <ore:petalRed>, <ore:petalOrange>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:6>, <Botania:rune:11>, <Botania:rune:15>, <Botania:rune:14>, <Botania:rune:5>, <Botania:rune:3> * 1]);