Fix records being broken when ending a run

This commit is contained in:
Melledy
2025-11-03 05:44:43 -08:00
parent 5b5a72b4dc
commit c32958bcad

View File

@@ -51,7 +51,7 @@ public class StarTowerBuild implements GameDatabaseObject {
this.subNoteSkills = new Int2IntOpenHashMap();
// Characters
this.charIds = game.getDiscs().stream()
this.charIds = game.getChars().stream()
.filter(d -> d.getId() > 0)
.mapToInt(d -> d.getId())
.toArray();