Fix battle pass weekly exp not resetting

This commit is contained in:
Melledy
2025-12-05 21:05:21 -08:00
parent 70c7c849df
commit 810427a028

View File

@@ -159,6 +159,11 @@ public class BattlePass implements GameDatabaseObject {
this.syncQuest(quest); this.syncQuest(quest);
} }
// Reset weekly limit for exp
if (resetWeekly) {
this.expWeek = 0;
}
// Persist to database // Persist to database
this.save(); this.save();
} }