mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
Core/Objects: Fixed uninitialized variables in FindCreatureOptions
(cherry picked from commit c76d96edfb)
This commit is contained in:
@@ -305,9 +305,9 @@ struct FindCreatureOptions
|
||||
Optional<bool> IsInCombat;
|
||||
Optional<bool> IsSummon;
|
||||
|
||||
bool IgnorePhases;
|
||||
bool IgnoreNotOwnedPrivateObjects;
|
||||
bool IgnorePrivateObjects;
|
||||
bool IgnorePhases = false;
|
||||
bool IgnoreNotOwnedPrivateObjects = true;
|
||||
bool IgnorePrivateObjects = false;
|
||||
|
||||
Optional<uint32> AuraSpellId;
|
||||
Optional<ObjectGuid> OwnerGuid;
|
||||
|
||||
Reference in New Issue
Block a user