aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShocker <shocker@freakz.ro>2015-01-06 00:43:02 +0200
committerShocker <shocker@freakz.ro>2015-01-06 00:43:02 +0200
commitc5d05051fb60da7e16c7eb4fbec9ce0c84657543 (patch)
tree4b2d6d09964f4a4d5cde692a88c4f8b26d70e3fc
parente99411e40538d2c6598a8a5deabd5b0b3b14bb32 (diff)
Core/Spells: Remove duplicate HasAttribute() method in SpellInfo
-rw-r--r--src/server/game/Spells/SpellInfo.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellInfo.h b/src/server/game/Spells/SpellInfo.h
index 6be44215366..27f99ca10cc 100644
--- a/src/server/game/Spells/SpellInfo.h
+++ b/src/server/game/Spells/SpellInfo.h
@@ -463,7 +463,6 @@ public:
inline bool HasAttribute(SpellAttr2 attribute) const { return !!(AttributesEx2 & attribute); }
inline bool HasAttribute(SpellAttr3 attribute) const { return !!(AttributesEx3 & attribute); }
inline bool HasAttribute(SpellAttr4 attribute) const { return !!(AttributesEx4 & attribute); }
- inline bool HasAttribute(SpellAttr4 attribute) const { return !!(AttributesEx4 & attribute); }
inline bool HasAttribute(SpellAttr5 attribute) const { return !!(AttributesEx5 & attribute); }
inline bool HasAttribute(SpellAttr6 attribute) const { return !!(AttributesEx6 & attribute); }
inline bool HasAttribute(SpellAttr7 attribute) const { return !!(AttributesEx7 & attribute); }