*Fix Master Shapeshifter - original patch by Drethek

--HG--
branch : trunk
This commit is contained in:
QAston
2009-07-17 19:09:08 +02:00
parent 5914d5d1ea
commit 6c8f54c4a6
2 changed files with 65 additions and 23 deletions

View File

@@ -3818,6 +3818,18 @@ void SpellMgr::LoadSpellCustomAttr()
break;
case 29809: // Desecration Arm - 36 instead of 37 - typo? :/
spellInfo->EffectRadiusIndex[0] = 37;
break;
// Master Shapeshifter: missing stance data for forms other than bear - bear version has correct data
// To prevent aura staying on target after talent unlearned
case 48420:
spellInfo->Stances = 1 << (FORM_CAT - 1);
break;
case 48421:
spellInfo->Stances = 1 << (FORM_MOONKIN - 1);
break;
case 48422:
spellInfo->Stances = 1 << (FORM_TREE - 1);
break;
default:
break;
}