Script/Ulduar: Remove no longer existing achievement

This commit is contained in:
Aokromes
2016-01-23 10:24:13 +01:00
parent 1994b29100
commit b629ef8116

View File

@@ -1359,17 +1359,6 @@ class spell_algalon_supermassive_fail : public SpellScriptLoader
}
};
class achievement_he_feeds_on_your_tears : public AchievementCriteriaScript
{
public:
achievement_he_feeds_on_your_tears() : AchievementCriteriaScript("achievement_he_feeds_on_your_tears") { }
bool OnCheck(Player* /*source*/, Unit* target) override
{
return !target->GetAI()->GetData(DATA_HAS_FED_ON_TEARS);
}
};
void AddSC_boss_algalon_the_observer()
{
new boss_algalon_the_observer();
@@ -1386,5 +1375,4 @@ void AddSC_boss_algalon_the_observer()
new spell_algalon_cosmic_smash();
new spell_algalon_cosmic_smash_damage();
new spell_algalon_supermassive_fail();
new achievement_he_feeds_on_your_tears();
}