Limit casting skill ups to casting skills

This commit is contained in:
Michael Cook (mackal)
2016-08-03 23:06:00 -04:00
parent 66fec40169
commit c81a5e0783
3 changed files with 24 additions and 8 deletions
+13
View File
@@ -110,6 +110,19 @@ bool EQEmu::skills::IsBardInstrumentSkill(SkillType skill)
}
}
bool EQEmu::skills::IsCastingSkill(SkillType skill)
{
switch (skill) {
case SkillAbjuration:
case SkillAlteration:
case SkillConjuration:
case SkillEvocation:
return true;
default:
return false;
}
}
const std::map<EQEmu::skills::SkillType, std::string>& EQEmu::skills::GetSkillTypeMap()
{
/* VS2013 code