Implemented Infinity evolved, update magic bees

Discussion in 'Archive (Suggestion and Feedback)' started by StrainsFYI, Feb 7, 2016.

  1. StrainsFYI

    StrainsFYI New Member

    Messages:
    5
    Likes Received:
    0
    Local Time:
    11:49 PM
    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.
     
  2. tyler489

    tyler489 Well-Known Member

    Messages:
    1,873
    Likes Received:
    202
    Local Time:
    4:49 PM
    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
     
    Bennyboy1695 likes this.
  3. 123hotdog1100

    123hotdog1100 Well-Known Member

    Messages:
    182
    Likes Received:
    16
    Local Time:
    10:49 PM
    they could not really change magic bees cus i dont think its open source but minetweeker would work
     
  4. StrainsFYI

    StrainsFYI New Member

    Messages:
    5
    Likes Received:
    0
    Local Time:
    11:49 PM
    right, i assumed that maybe they could update magic bees, because i was'nt thinking :D 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.
     
  5. Bennyboy1695

    Bennyboy1695 Well-Known Member

    Messages:
    1,888
    Likes Received:
    498
    Local Time:
    10:49 PM
    Ftb isnt planning on putting anymore updates out unless really needed
     
  6. SirWill

    SirWill Founder

    Messages:
    12,284
    Likes Received:
    3,708
    Local Time:
    11:49 PM
    Added with the next restart
     
  7. StrainsFYI

    StrainsFYI New Member

    Messages:
    5
    Likes Received:
    0
    Local Time:
    11:49 PM
    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?
     
  8. Spelosty

    Spelosty Well-Known Member

    Messages:
    17
    Likes Received:
    8
    Local Time:
    5:49 PM
    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]);
     
    SirWill, The_Icy_One and profrags like this.
  9. SirWill

    SirWill Founder

    Messages:
    12,284
    Likes Received:
    3,708
    Local Time:
    11:49 PM
    Updated with the next restart ;)
     
  10. Spelosty

    Spelosty Well-Known Member

    Messages:
    17
    Likes Received:
    8
    Local Time:
    5:49 PM
    Thanks! :)
     

Share This Page