Implemented Infinity evolved, update magic bees

Dieses Thema im Forum "Archive (Suggestion and Feedback)" wurde erstellt von StrainsFYI, 7. Februar 2016.

  1. StrainsFYI

    StrainsFYI New Member

    Beiträge:
    5
    Zustimmungen:
    0
    Ortszeit:
    23:19
    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

    Beiträge:
    1.873
    Zustimmungen:
    202
    Ortszeit:
    16:19
    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 gefällt das.
  3. 123hotdog1100

    123hotdog1100 Well-Known Member

    Beiträge:
    182
    Zustimmungen:
    16
    Ortszeit:
    22:19
    they could not really change magic bees cus i dont think its open source but minetweeker would work
     
  4. StrainsFYI

    StrainsFYI New Member

    Beiträge:
    5
    Zustimmungen:
    0
    Ortszeit:
    23:19
    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

    Beiträge:
    1.888
    Zustimmungen:
    498
    Ortszeit:
    22:19
    Ftb isnt planning on putting anymore updates out unless really needed
     
  6. SirWill

    SirWill Founder

    Beiträge:
    12.285
    Zustimmungen:
    3.712
    Ortszeit:
    23:19
    Added with the next restart
     
  7. StrainsFYI

    StrainsFYI New Member

    Beiträge:
    5
    Zustimmungen:
    0
    Ortszeit:
    23:19
    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

    Beiträge:
    17
    Zustimmungen:
    8
    Ortszeit:
    17:19
    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 und profrags gefällt das.
  9. SirWill

    SirWill Founder

    Beiträge:
    12.285
    Zustimmungen:
    3.712
    Ortszeit:
    23:19
    Updated with the next restart ;)
     
  10. Spelosty

    Spelosty Well-Known Member

    Beiträge:
    17
    Zustimmungen:
    8
    Ortszeit:
    17:19
    Thanks! :)
     

Diese Seite empfehlen