mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
Core/Spells: Fixed crash caused by uninitialized target type
This commit is contained in:
@@ -200,7 +200,7 @@ class SpellImplicitTargetInfo
|
||||
private:
|
||||
Targets _target;
|
||||
public:
|
||||
SpellImplicitTargetInfo() {}
|
||||
SpellImplicitTargetInfo() : _target(Targets(0)) {}
|
||||
SpellImplicitTargetInfo(uint32 target);
|
||||
|
||||
bool IsArea() const;
|
||||
|
||||
Reference in New Issue
Block a user