Skip to content

Commit

Permalink
update HS contest: remove Mul2 'C'
Browse files Browse the repository at this point in the history
  • Loading branch information
JG1VPP committed May 7, 2024
1 parent d8cbfab commit 0edc24c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/plugins/rules/hstest/hstest.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ func onDeleteEvent(qso *reiwa.QSO) {
func onAcceptEvent(qso *reiwa.QSO) {
rcvd := qso.GetRcvdGroups()
qso.SetMul1(rcvd[1])
qso.SetMul2(rcvd[2])
if rcvd[2] == "HS" {
qso.SetMul2("HS")
} else {
qso.SetMul2("")
}
if qso.Mode == reiwa.CW {
qso.Score = 3
} else {
Expand Down

0 comments on commit 0edc24c

Please sign in to comment.