Fixing a typo

This commit is contained in:
Oliver-Akins 2020-10-10 01:07:52 -06:00
parent f57b4b5fed
commit bca0ca3787

2
src/types/db.d.ts vendored
View file

@ -7,7 +7,7 @@ interface player {
type game_states = "lobby"; type game_states = "lobby";
type policy = "liberal" | "facist"; type policy = "liberal" | "fascist";
type players = {[key: string]: player}; type players = {[key: string]: player};