knowyt/server/src/game/collectQuotes.go

16 lines
203 B
Go
Raw Normal View History

2021-10-01 14:40:07 +00:00
package game
import (
"fmt"
)
func (gm *Game) CollectQuotes() {
err := gm.changeGameState(STATE_ANY, STATE_COLLECT, PHASE_NONE)
if err != nil {
fmt.Println(err)
return
}
gm.notifyClients()
}