chore(Core/Loot): apply clang-tidy to use bool literal (#25356)
This commit is contained in:
parent
51c6f348bb
commit
177fa72101
1 changed files with 4 additions and 4 deletions
|
|
@ -405,10 +405,10 @@ LootItem::LootItem(LootStoreItem const& li)
|
|||
randomSuffix = GenerateEnchSuffixFactor(itemid);
|
||||
randomPropertyId = Item::GenerateItemRandomPropertyId(itemid);
|
||||
count = 0;
|
||||
is_looted = 0;
|
||||
is_blocked = 0;
|
||||
is_underthreshold = 0;
|
||||
is_counted = 0;
|
||||
is_looted = false;
|
||||
is_blocked = false;
|
||||
is_underthreshold = false;
|
||||
is_counted = false;
|
||||
rollWinnerGUID = ObjectGuid::Empty;
|
||||
groupid = li.groupid;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue