Make some chr stats nullable to ease migration to PG

This commit is contained in:
P0nk
2024-09-25 17:44:33 +02:00
parent 767c4402e7
commit b4e673baab
3 changed files with 32 additions and 32 deletions

View File

@@ -44,7 +44,7 @@ import java.util.concurrent.locks.ReentrantLock;
public class Party {
private int id;
private final int id;
private Party enemy = null;
private int leaderId;
private final List<PartyCharacter> members = new LinkedList<>();
@@ -173,10 +173,6 @@ public class Party {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getLeaderId() {
return leaderId;
}