Fix minor comment typo

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
SwingTheVine 2025-08-17 02:49:39 -04:00 committed by GitHub
parent eadc681d97
commit 9c64b06b4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -517,7 +517,7 @@ function buildOverlayMain() {
input.addEventListener("paste", (event) => {
let splitText = (event.clipboardData || window.clipboardData).getData("text").split(" ").filter(n => n).map(Number).filter(n => !isNaN(n)); //split and filter all Non Numbers
if (splitText.length !== 4 ) { //if we dont have 4 clean coordinates end the function
if (splitText.length !== 4 ) { // If we don't have 4 clean coordinates, end the function.
return;
}