Skip to content

Commit

Permalink
Fix a team melee detection bug
Browse files Browse the repository at this point in the history
  • Loading branch information
icza committed Mar 24, 2023
1 parent fd06ef4 commit d1bd393
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/screp/screp.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

const (
appName = "screp"
appVersion = "v1.11.1"
appVersion = "v1.11.2"
appAuthor = "Andras Belicza"
appHome = "https://github.com/icza/screp"
)
Expand Down
1 change: 1 addition & 0 deletions rep/replay.go
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,7 @@ func (r *Replay) computeMeleeTeams() {
for _, slotIDC := range slotIDSlotIDs[slotIDB] {
if slotIDC == slotIDA {
// found!
found = true
break
}
}
Expand Down
2 changes: 1 addition & 1 deletion repparser/repparser.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import (

const (
// Version is a Semver2 compatible version of the parser.
Version = "v1.11.1"
Version = "v1.11.2"
)

var (
Expand Down

0 comments on commit d1bd393

Please sign in to comment.