Default the user to not being the host
This commit is contained in:
parent
330125efbe
commit
5fb5f5d457
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ import { writable, readable } from "svelte/store";
|
|||
|
||||
export const state = writable<string>("main-menu");
|
||||
export const myName = writable<string>();
|
||||
export const isHost = writable<boolean>(true);
|
||||
export const isHost = writable<boolean>(false);
|
||||
|
||||
|
||||
interface Player {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue