We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f7c25 commit c16c14bCopy full SHA for c16c14b
src/com/camoga/ant/net/Client.java
@@ -53,7 +53,7 @@ public class Client {
53
static DataInputStream is;
54
static String host;
55
static final int PORT = 7357;
56
- static final Version VERSION = new Version(1,0,0);
+ static final Version VERSION = new Version(1,0,1);
57
58
static int ASSIGN_SIZE = 50;
59
static long lastResultsTime;
@@ -176,6 +176,7 @@ public synchronized static void sendAssignmentResult() {
176
if(storedrules[i].size() > 1) {
177
Packet03Result packet = new Packet03Result(i,storedrules[i].size()/offset[i],storedrules[i]);
178
packet.writeData(os);
179
+ storedrules[i].reset();
180
datasent = true;
181
}
182
0 commit comments