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/" from "packr-out/"
archiveName appName + "-" + getPlatform() + "-" + getDeployVersion() + ".zip" archiveName appName + "-" + getPlatform() + "-" + getDeployVersion() + ".zip"
destinationDir(file("packr-export")) destinationDir(file("packr-export"))
doLast{
delete{
delete "null/"
}
}
} }
eclipse { eclipse {

View File

@@ -396,7 +396,7 @@ public class KryoServer implements ServerProvider {
connect.addressTCP = conn.getRemoteSocketAddress().toString(); connect.addressTCP = conn.getRemoteSocketAddress().toString();
KryoConnection kn = new KryoConnection(lastconnection ++, connect.addressTCP, conn); 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); connections.add(kn);
} }