Skip to content
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.

Commit

Permalink
fix(textWalls): fix '<=' -> '>'
Browse files Browse the repository at this point in the history
i'm so dumb
  • Loading branch information
cAttte committed Nov 19, 2020
1 parent e3e3a96 commit 12303ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/textWalls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default new Module({
const wrapValue = (lineWidth - remainder) / 1200
lines += wrapValue + 1
}
return lines <= config.maxLines
return lines > config.maxLines
}
})
})

0 comments on commit 12303ba

Please sign in to comment.