Make PointData compatible with alternative PointData

Original Commit Message: Make PointData compatible with windied scene points.
Gitea Author: GanyusLeftHorn

Co-authored-by: GanyusLeftHorn <1244229+GanyusLeftHorn@users.noreply.github.com>
This commit is contained in:
Benj 2022-08-23 20:31:34 +08:00 committed by Luke H-W
parent cb97ac8250
commit d8816911a6

View File

@ -56,8 +56,8 @@ public class PointData {
}
public void updateDailyDungeon() {
if (getDungeonRandomList() == null) {
return;
if (getDungeonRandomList() == null || getDungeonRandomList().length == 0) {
return;
}
IntList newDungeons = new IntArrayList();