Jump to content

RxCompiLe

Members
  • Posts

    3
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by RxCompiLe

  1. What bug does the patch fix? What features does the patch add?

    There are trinkets, that should have internal 45s cooldown:

    http://ru.wowhead.com/item=45866

    http://ru.wowhead.com/item=50342

    http://ru.wowhead.com/item=50343

    http://ru.wowhead.com/item=50365

    http://ru.wowhead.com/item=50360

    http://ru.wowhead.com/item=50348

    http://ru.wowhead.com/item=50353

    http://ru.wowhead.com/item=47665

    For which repository revision was the patch created?

    10091

    Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread.

    Ru-mangos http://ru-mangos.ru/showthread.php?t=1414

    Who has been writing this patch? Please include either forum user names or email addresses.

    RxCompiLe

    DELETE FROM `spell_proc_event` WHERE `entry` IN (65005, 67389, 71402, 71540, 71602, 71606, 71637, 71645);
    
    INSERT INTO `spell_proc_event` VALUES
    (65005, 0x01, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 10, 45),
    (67389, 0x01, 0x0B, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 70, 45),
    (71402, 0x01, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00051154, 0x00000000, 0, 35, 45),
    (71540, 0x01, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00051154, 0x00000000, 0, 35, 45),
    (71602, 0x01, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 10, 45),
    (71606, 0x00, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 30, 45),
    (71637, 0x00, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 30, 45),
    (71645, 0x01, 0x00, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 10, 45);
    

  2. What bug does the patch fix? What features does the patch add?

    http://www.wowhead.com/spell=64401 has 1 hour duration, but in mangos it has only 10 min.

    For which repository revision was the patch created?

    10091

    Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread.

    Ru-mangos http://ru-mangos.ru/showthread.php?t=1543

    Who has been writing this patch? Please include either forum user names or email addresses.

    RxCompiLe

    diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
    index 5473163..4980148 100644
    --- a/src/game/SpellEffects.cpp
    +++ b/src/game/SpellEffects.cpp
    @@ -4698,7 +4698,7 @@ void Spell::EffectEnchantItemTmp(SpellEffectIndex eff_idx)
        else if(m_spellInfo->SpellVisual[0] == 215)
            duration = 1800;                                    // 30 mins
        // some fishing pole bonuses
    -    else if(m_spellInfo->SpellVisual[0] == 563)
    +    else if(m_spellInfo->SpellVisual[0] == 563 && m_spellInfo->Id != 64401)
            duration = 600;                                     // 10 mins
        // shaman rockbiter enchantments
        else if(m_spellInfo->SpellVisual[0] == 0)

    Patch

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use