Default the user to not being the host

This commit is contained in:
Oliver Akins 2022-03-08 13:28:28 -06:00
parent 330125efbe
commit 5fb5f5d457
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -2,7 +2,7 @@ import { writable, readable } from "svelte/store";
export const state = writable<string>("main-menu"); export const state = writable<string>("main-menu");
export const myName = writable<string>(); export const myName = writable<string>();
export const isHost = writable<boolean>(true); export const isHost = writable<boolean>(false);
interface Player { interface Player {