knowyt/server/src/game/collectQuotes.go

16 lines
204 B
Go

package game
import (
"fmt"
)
func (gm *Game) CollectQuotes() {
err := gm.changeGameState(STATE_IDLE, STATE_COLLECT, PHASE_NONE)
if err != nil {
fmt.Println(err)
return
}
gm.notifyClients()
}