chore(Core/Loot): apply clang-tidy to use bool literal (#25356)

This commit is contained in:
sogladev 2026-04-03 12:03:04 +02:00 committed by GitHub
parent 51c6f348bb
commit 177fa72101
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}