fixed bug that prevented the start of stage 2

This commit is contained in:
alex-gh
2013-12-23 10:42:03 +01:00
parent 6743506e5c
commit 0df1bb23f1
+2 -2
View File
@@ -147,8 +147,8 @@ var/list/blob_nodes = list()
stage(1)
// Stage 2
while(blobs.len < blobwincount/stage_2_threshold)
sleep(100)
while(blobs.len < blobwincount*stage_2_threshold)
sleep(10)
stage(2)
..()