blob: 656dbdb4b044ca720940555abbad732842b018cc (
plain)
1
2
3
4
5
6
7
8
9
|
package game
func (ctx *Context) ProcessGo() {
for _, playerID := range ctx.Visitors.Go {
ctx.Turn.Log = append(ctx.Turn.Log, LogLandGo)
ctx.AdjustPlayerMoney(playerID, GoSalary)
}
}
|