Fix assigning match points when double offer is declined

This commit is contained in:
Trevor Slocum 2024-06-26 09:22:49 -07:00
parent 8acfc83de6
commit 6313f6fca8

View file

@ -594,7 +594,7 @@ COMMANDS:
reset = true
}
} else {
clientGame.Player1.Points = clientGame.Player2.Points + clientGame.DoubleValue
clientGame.Player1.Points = clientGame.Player1.Points + clientGame.DoubleValue
if clientGame.Player1.Points >= clientGame.Points {
clientGame.Winner = 1
clientGame.Ended = time.Now()