Add more logging around rewarding items (#1861)

This commit is contained in:
David Markowitz
2025-08-31 20:33:16 -07:00
committed by GitHub
parent 21a2ddcfd9
commit f9e74e6994
3 changed files with 7 additions and 2 deletions

View File

@@ -129,6 +129,10 @@ std::unordered_map<LOT, int32_t> Loot::RollLootMatrix(Entity* player, uint32_t m
}
}
for (const auto& drop : drops) {
LOG("Player %llu has rolled %i of item %i from loot matrix %i", player->GetObjectID(), drop.second, drop.first, matrixIndex);
}
return drops;
}