Jump to content

NeatElves

Members
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Everything posted by NeatElves

  1. +add #include "CellImpl.h" into ScriptMgr.cpp for non-pch compile
  2. https://github.com/mangos/mangos/commit/7d53d11670f577254b4c6326c8ab4e8e7ee308a7
  3. diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index 743c795..d3e8c14 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -469,6 +469,11 @@ void LoadDBCStores(const std::string& dataPath) // old continent node (+ nodes virtually at old continents, check explicitly to avoid loading map files for zone info) if (node->map_id < 2 || i == 82 || i == 83 || i == 93 || i == 94) sOldContinentsNodesMask[field] |= submask; + + // fix DK node at Ebon Hold + if (i == 315) { + ((TaxiNodesEntry*)node)->MountCreatureID[1] = 32981; + } } }
  4. http://www.wowhead.com/spell=74904 diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index e14e5a4..0d080d8 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1331,6 +1331,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51961: // Captured Chicken Cover case 55364: // Create Ghoul Drool Cover case 61832: // Rifle the Bodies: Create Magehunter Personal Effects Cover + case 74904: // Pickup Sen'jin Frog { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) return; @@ -1346,6 +1347,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51961: spellId = 51037; break; case 55364: spellId = 55363; break; case 61832: spellId = 47096; break; + case 74904: spellId = 74905; break; } if (const SpellEntry *pSpell = sSpellStore.LookupEntry(spellId))
×
×
  • 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