Fix field name

This commit is contained in:
Cohee 2024-05-06 17:27:43 +03:00
parent 83c77c1f18
commit 694cf6f762
1 changed files with 1 additions and 1 deletions

View File

@ -2656,7 +2656,7 @@ function filterByInclusionGroups(newEntries, allActivatedEntries, buffer) {
let winner = null;
for (const entry of group) {
currentWeight += (entry.group_weight ?? DEFAULT_WEIGHT);
currentWeight += (entry.groupWeight ?? DEFAULT_WEIGHT);
if (rollValue <= currentWeight) {
console.debug(`Activated inclusion group '${key}' with roll winner entry '${entry.uid}'`, entry);