12 lines
214 B
Go
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)
|
|
}
|
|
}
|
|
}
|