This commit is contained in:
syuilo
2024-02-09 15:42:33 +09:00
parent 084e9449dc
commit bb042b46ac
5 changed files with 44 additions and 13 deletions

View File

@@ -292,7 +292,7 @@ const isMyTurn = computed(() => {
});
const canHora = computed(() => {
return Mmj.getHoraSets(mj.value.myHandTileTypes).length > 0;
return Mmj.canHora(mj.value.myHandTileTypes).length;
});
const selectableTiles = ref<Mmj.TileType[] | null>(null);