From 0a1675c63777569a9f90845c609b87ce8a09b59c Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Thu, 3 Jun 2021 21:29:02 +0200 Subject: [PATCH] allow lol names with length 3 --- static/balance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/balance.js b/static/balance.js index d7a6b5e..e7d39d1 100644 --- a/static/balance.js +++ b/static/balance.js @@ -159,7 +159,7 @@ function parseMultiline(){ acceptedParser.forEach( p => { i = l.indexOf(" " + p) - if(i > 3 && i < lowestIndex){ + if(i >= 3 && i < lowestIndex){ lowestIndex = i } })