remove console.log output and obsolete comments
This commit is contained in:
parent
d2de582c95
commit
cc6eb8ebbc
1 changed files with 0 additions and 3 deletions
|
|
@ -613,7 +613,6 @@ async function main() {
|
||||||
PIECE_VIEW_LOOSE = !PIECE_VIEW_LOOSE
|
PIECE_VIEW_LOOSE = !PIECE_VIEW_LOOSE
|
||||||
RERENDER = true
|
RERENDER = true
|
||||||
}
|
}
|
||||||
console.log(PIECE_VIEW_FIXED, PIECE_VIEW_LOOSE)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const evts = new EventAdapter(canvas, window, viewport)
|
const evts = new EventAdapter(canvas, window, viewport)
|
||||||
|
|
@ -880,12 +879,10 @@ async function main() {
|
||||||
|
|
||||||
for (let tile of tiles) {
|
for (let tile of tiles) {
|
||||||
if (tile.owner === -1) {
|
if (tile.owner === -1) {
|
||||||
// piece is fixed...
|
|
||||||
if (!PIECE_VIEW_FIXED) {
|
if (!PIECE_VIEW_FIXED) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// not finished
|
|
||||||
if (!PIECE_VIEW_LOOSE) {
|
if (!PIECE_VIEW_LOOSE) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue