jbilcke-hf HF staff commited on
Commit
e2b43cd
·
1 Parent(s): fd6f6bd
Files changed (1) hide show
  1. src/app/games/index.ts +1 -1
src/app/games/index.ts CHANGED
@@ -11,6 +11,6 @@ import { game as pharaoh } from "./pharaoh"
11
 
12
  export const games = { pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh}
13
 
14
- export const defaultGame: GameType = "flamenco"
15
 
16
  export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]
 
11
 
12
  export const games = { pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh}
13
 
14
+ export const defaultGame: GameType = "enchanters"
15
 
16
  export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]