From f232bf1ccd281abcf7c24fe61987fcdb987adf24 Mon Sep 17 00:00:00 2001 From: KayenEQ Date: Sat, 27 Sep 2014 09:21:37 -0400 Subject: [PATCH] Fix for commit failure. --- zone/npc.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zone/npc.h b/zone/npc.h index 228ce7cf3..f1e4c790c 100644 --- a/zone/npc.h +++ b/zone/npc.h @@ -136,10 +136,6 @@ public: int32 GetActSpellDamage(uint16 spell_id, int32 value, Mob* target = nullptr); int32 GetActSpellHealing(uint16 spell_id, int32 value, Mob* target = nullptr); - inline void SetSpellFocusDMG(int32 NewSpellFocusDMG) {SpellFocusDMG = NewSpellFocusDMG;} - inline void SetSpellFocusHeal(int32 NewSpellFocusHeal) {SpellFocusHeal = NewSpellFocusHeal;} - int32 SpellFocusDMG; - int32 SpellFocusHeal; virtual void SetTarget(Mob* mob); virtual uint16 GetSkill(SkillUseTypes skill_num) const { if (skill_num <= HIGHEST_SKILL) { return skills[skill_num]; } return 0; }