Skip to content

Commit d5bd400

Browse files
committed
fix: remove 4 stars
1 parent 00bd11d commit d5bd400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Board.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ defineProps<{
4141
]"
4242
></div>
4343
<div
44-
v-if="(x + 1) % 4 === 0 && (y + 1) % 4 === 0"
44+
v-if="(x + 1) % 4 === 0 && (y + 1) % 4 === 0 && ((x + y + 2) / 4) % 2 === 0"
4545
:class="['position:absolute', 'background:black', 'width:25%', 'height:25%', 'r:100%']"
4646
></div>
4747

0 commit comments

Comments
 (0)