fix: don't let user invite themself to reversi game
This commit is contained in:
parent
913dd581ef
commit
610f208c57
2 changed files with 2 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ async function matchHeatbeat() {
|
|||
}
|
||||
|
||||
async function matchUser() {
|
||||
const user = await os.selectUser({ local: true });
|
||||
const user = await os.selectUser({ local: true, includeSelf: false });
|
||||
if (user == null) return;
|
||||
|
||||
matchingUser.value = user;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue