jbilcke-hf HF Staff commited on
Commit
78a9e11
·
1 Parent(s): 05aa793
Files changed (1) hide show
  1. src/app/games/index.ts +1 -1
src/app/games/index.ts CHANGED
@@ -14,6 +14,6 @@ import { game as arizona } from "./arizona"
14
 
15
  export const games = { arizona, pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh, tensor, nexus}
16
 
17
- export const defaultGame: GameType = "vernian"
18
 
19
  export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]
 
14
 
15
  export const games = { arizona, pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh, tensor, nexus}
16
 
17
+ export const defaultGame: GameType = "enchanters"
18
 
19
  export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]