Fix typo in last commit (#2138)

This commit is contained in:
scooterboo 2023-05-01 07:07:51 -07:00 committed by GitHub
parent 916db0f408
commit 60afba7e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,6 @@ import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
import java.util.Map; import java.util.Map;
import it.unimi.dsi.fastutil.ints.IntArrayList; import it.unimi.dsi.fastutil.ints.IntArrayList;
import it.unimi.dsi.fastutil.ints.IntList;
import lombok.Getter; import lombok.Getter;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
import lombok.Setter; import lombok.Setter;
@ -21,7 +20,7 @@ public class PlayerProgress {
* A list of dungeon IDs which have been completed. * A list of dungeon IDs which have been completed.
* This only applies to one-time dungeons. * This only applies to one-time dungeons.
*/ */
@Getter private IntList completedDungeons; @Getter private IntArrayList completedDungeons;
// keep track of EXEC_ADD_QUEST_PROGRESS count, will be used in CONTENT_ADD_QUEST_PROGRESS // keep track of EXEC_ADD_QUEST_PROGRESS count, will be used in CONTENT_ADD_QUEST_PROGRESS
// not sure where to put this, this should be saved to DB but not to individual quest, since // not sure where to put this, this should be saved to DB but not to individual quest, since