Improve leech-detection criteria
John Smith

John Smith commited on 2022-290 21:33:58
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -254,7 +254,7 @@ elseif action == "l" then
254 254
         local leechqueue = {}
255 255
         for i, cg in ipairs(deck) do
256 256
             for j, pr in ipairs(cg) do
257
-                if pr.fail > 8 and pr.delay >= 0 then
257
+                if pr.fail > 4 and pr.ease < 2 and pr.delay >= 0 then
258 258
                     table.insert(leechqueue, { i, j })
259 259
                 end
260 260
             end
261 261