allow lol names with length 3

This commit is contained in:
2021-06-03 21:29:02 +02:00
parent f6ce5a9533
commit 0a1675c637

View File

@@ -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
}
})