mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-13 01:16:46 -04:00
mac os x support (folder creation)
This commit is contained in:
parent
3edddf7f70
commit
341c29f8cf
@ -85,6 +85,12 @@ public class Minosoft {
|
||||
case WINDOWS:
|
||||
path += "AppData/Roaming/Minosoft/";
|
||||
break;
|
||||
case MAC:
|
||||
path += "Library/Application Support/Minosoft/";
|
||||
break;
|
||||
case OTHER:
|
||||
path += ".minosoft/";
|
||||
break;
|
||||
//ToDo: Mac, Other
|
||||
}
|
||||
File folder = new File(path);
|
||||
|
@ -18,7 +18,6 @@ public class InPacketBuffer extends InByteBuffer {
|
||||
|
||||
public InPacketBuffer(byte[] bytes) {
|
||||
super(bytes);
|
||||
// ToDo: compression
|
||||
command = readVarInt();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user