huge update idk

This commit is contained in:
CT
2026-04-25 17:14:35 -05:00
parent 1bd20c4af4
commit 3b2520df35
8 changed files with 89 additions and 8 deletions

View File

@@ -26,7 +26,7 @@ public class PlayerList {
public String createSaveData() {
String s = pList.size() + "\n";
for (HockeyPlayer p : pList) {
s += p.name + p.goals + p.assists + p.gamesWon + p.gamesLost + "\n";
s += p.getData();
}
return s;
}