Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4

Conflicts:
	src/server/scripts/Spells/spell_paladin.cpp
This commit is contained in:
Vincent_Michael
2014-01-27 18:44:07 +01:00
24 changed files with 197 additions and 75 deletions
+2 -2
View File
@@ -79,7 +79,7 @@ enum MiscSpells
class PowerCheck
{
public:
explicit PowerCheck(Powers power) : _power(power) { }
explicit PowerCheck(Powers const power) : _power(power) { }
bool operator()(WorldObject* obj) const
{
@@ -90,7 +90,7 @@ class PowerCheck
}
private:
Powers _power;
Powers const _power;
};
class RaidCheck