fix(multiplayer): align proposal participant contract

This commit is contained in:
Josh Creek
2026-09-01 22:52:52 +01:00
parent 807aaa4478
commit ffc7856993
5 changed files with 47 additions and 6 deletions
+4 -4
View File
@@ -32,10 +32,10 @@ const (
)
type ProposalParticipant struct {
PlayerID string
Response Response
Team int
Slot int
PlayerID string `json:"player_id"`
Response Response `json:"response"`
Team int `json:"team"`
Slot int `json:"slot"`
}
type Proposal struct {