bugfixes and improvements

* fixed inconsistent player order
* minor visual adjustments
* refactoring
This commit is contained in:
2022-01-11 14:00:28 +01:00
parent 8e61e6b2f8
commit 857a04cb9d
19 changed files with 736 additions and 479 deletions

View File

@@ -35,7 +35,7 @@ public class Session implements Observer {
private final Configuration configuration;
@Getter(AccessLevel.NONE)
private final Map<UUID, SessionPlayer> players = new HashMap<>();
private final Map<UUID, SessionPlayer> players = new LinkedHashMap<>();
private Game game;
private final List<Pair<UUID, ServerMessage>> messages = new ArrayList<>();