knowyt/server/src/application/addUsersToGames.go
2021-09-06 23:18:34 +02:00

12 lines
214 B
Go

package application
func (app *Application) addUsersToGames() {
for _, usr := range app.users {
if gm, err := app.GetGameById(usr.GetGameId()); err != nil {
continue
} else {
gm.AddPlayer(usr)
}
}
}