Rename vampireCards in PlayerProgress

This commit is contained in:
Melledy
2025-11-14 19:14:16 -08:00
parent fe712e9d2d
commit 9f4ae13f09
4 changed files with 12 additions and 10 deletions

View File

@@ -42,10 +42,12 @@ public class PlayerProgress extends PlayerManager implements GameDatabaseObject
// Infinite Arena
private Int2IntMap infinityArenaLog;
// Vampire Survivors TODO
// Vampire Survivors
private Map<Integer, VampireSurvivorLog> vampireLog;
private Bitset vampireTalents;
private IntSet vampireCards;
// Fate cards
private IntSet fateCards;
@Deprecated // Morphia only
public PlayerProgress() {
@@ -72,7 +74,7 @@ public class PlayerProgress extends PlayerManager implements GameDatabaseObject
// Vampire Survivor
this.vampireLog = new HashMap<>();
this.vampireTalents = new Bitset();
this.vampireCards = new IntOpenHashSet();
this.fateCards = new IntOpenHashSet();
// Save to database
this.save();