Partially fix Chasing Shadows (#2159)

* Partially fix Chasing Shadows

* Go ahead and move it before the return before Magix tells me to.
This commit is contained in:
Nazrin
2023-05-20 08:42:26 -07:00
committed by GitHub
parent 9b83ea9072
commit 4e8726d29e
3 changed files with 7 additions and 2 deletions

View File

@@ -78,6 +78,10 @@ public class PlayerProgress {
return questProgressCountMap.merge(progressId, count, Integer::sum);
}
public int resetCurrentProgress(int progressId) {
return questProgressCountMap.merge(progressId,0,Integer::min);
}
@Entity
@NoArgsConstructor
public static class ItemEntry {