mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
MacOS support
This commit is contained in:
parent
47ffc72154
commit
5ea12a3605
2 changed files with 4 additions and 2 deletions
|
@ -5,9 +5,10 @@ Brainwine is a Deepworld private server written in Java, made with user-friendli
|
|||
Due to the time it will take for this project to be complete (and my inconsistent working on it), brainwine has been prematurely open-sourced
|
||||
and is free for all to use.\
|
||||
Keep in mind, though, that this server is not finished yet. Expect to encounter bad code, bugs and missing features!\
|
||||
Brainwine is currently compatible with the latest Steam and iOS versions of Deepworld:
|
||||
Brainwine is currently compatible with the following versions of Deepworld:
|
||||
- Steam: `v3.13.1`
|
||||
- iOS: `v2.11.0.1`
|
||||
- MacOS: `v2.11.1`
|
||||
|
||||
## Features
|
||||
A list of all planned, in-progress and finished features can be found [here.](https://github.com/kuroppoi/brainwine/projects/1)
|
||||
|
|
|
@ -21,7 +21,8 @@ import brainwine.shared.JsonHelper;
|
|||
|
||||
public class PlayerManager {
|
||||
|
||||
public static final List<String> SUPPORTED_VERSIONS = Arrays.asList("2.11.0.1", "3.13.1");
|
||||
// TODO check platforms as well
|
||||
public static final List<String> SUPPORTED_VERSIONS = Arrays.asList("2.11.0.1", "2.11.1", "3.13.1");
|
||||
private static final Logger logger = LogManager.getLogger();
|
||||
private final Map<String, Player> playersById = new HashMap<>();
|
||||
private final Map<String, Player> playersByName = new HashMap<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue