Remove unnecessary break

This commit is contained in:
2020-12-05 14:13:44 +00:00
parent 835bc8509e
commit b07b808e96

View File

@@ -34,7 +34,6 @@ readInterface.on('close', function(line) {
let seatID = y*8+x;
if (!seatIDs.has(seatID) && seatIDs.has(seatID-1) && seatIDs.has(seatID+1)) {
console.log(seatID);
break;
}
}
}