Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
Hotfix 1.3.1: Fix crash when submitting scores as P2
Browse files Browse the repository at this point in the history
  • Loading branch information
natano committed Mar 25, 2022
1 parent 66376d2 commit 8d80b0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Unicode true

!define VERSIONMAJOR 1
!define VERSIONMINOR 3
!define VERSIONBUILD 0
!define VERSIONBUILD 1

RequestExecutionLevel admin

Expand Down
4 changes: 2 additions & 2 deletions internal/groovestats/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ func (client *Client) scoreSubmit(request *fsipc.GsScoreSubmitRequest) (*ScoreSu
Score: request.Player2.Score,
Comment: request.Player2.Comment,
Rate: request.Player2.Rate,
JudgmentCounts: request.Player1.JudgmentCounts,
UsedCmod: request.Player1.UsedCmod,
JudgmentCounts: request.Player2.JudgmentCounts,
UsedCmod: request.Player2.UsedCmod,
}
}

Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "fmt"
// When updating this version number also update installer.nsi
var Major int = 1
var Minor int = 3
var Patch int = 0
var Patch int = 1

var Protocol int = 1

Expand Down

0 comments on commit 8d80b0f

Please sign in to comment.