group and turn numbers are hidden information

This commit is contained in:
2024-01-21 01:09:36 -06:00
parent 5fa8de142b
commit 9b6b645cfe
3 changed files with 1 additions and 7 deletions

View File

@@ -159,8 +159,6 @@ func (g *Game) DTO(id player.ID) serve.Game {
g.PP[1].DTO(),
},
Round: g.Round,
Group: g.Group,
Turn: g.Turn,
Damage: g.Damage,
Shell: g.Peek(id),
Previous: g.Prev,

View File

@@ -27,7 +27,7 @@ func (p *Player) StartGroup(rng *RNG, items int) {
}
p.Items[k] = NewItem(rng)
}
p.Cuffs = Uncuffed // TODO(zeph): or is this startround?
p.Cuffs = Uncuffed
}
func (p *Player) DTO() serve.Player {