1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-21 21:38:29 +03:00
This commit is contained in:
Anuken 2018-01-31 16:05:43 -05:00
parent 3d9ca10db3
commit 1515845d5d
2 changed files with 7 additions and 1 deletions

View File

@ -149,6 +149,12 @@ task packrZip(type: Zip) {
from "packr-out/"
archiveName appName + "-" + getPlatform() + "-" + getDeployVersion() + ".zip"
destinationDir(file("packr-export"))
doLast{
delete{
delete "null/"
}
}
}
eclipse {

View File

@ -396,7 +396,7 @@ public class KryoServer implements ServerProvider {
connect.addressTCP = conn.getRemoteSocketAddress().toString();
KryoConnection kn = new KryoConnection(lastconnection ++, connect.addressTCP, conn);
Log.info("&Recieved web connection: {0} {1}", kn.id, connect.addressTCP);
Log.info("&bRecieved web connection: {0} {1}", kn.id, connect.addressTCP);
connections.add(kn);
}