mirror of
https://github.com/SwingTheVine/Wplace-BlueMarble.git
synced 2026-04-21 02:52:04 +00:00
Fix minor comment typo
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
eadc681d97
commit
9c64b06b4f
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue