Skip to content

Commit

Permalink
change 'Error (reach over net)' evaluation to just 'Error' for E/ wit…
Browse files Browse the repository at this point in the history
…h VM conventions
  • Loading branch information
raymondben committed Mar 15, 2024
1 parent f749a6b commit a9919f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/plays.R
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ F^#^Perfect",sep="^",header=TRUE,comment.char="",stringsAsFactors=FALSE)
## D! is block cover that does not give attacking team a chance to re-attack or is an error
dtbl$evaluation[dtbl$skill=="D" & dtbl$evaluation_code=="!"] <- "Poor block cover"
## E/ is a reach
dtbl$evaluation[dtbl$skill=="E" & dtbl$evaluation_code=="/"] <- "Error (reach over net)"
dtbl$evaluation[dtbl$skill=="E" & dtbl$evaluation_code=="/"] <- "Error" ## reach over net
} else if (style == "german") {
## swap B= Error and B/ Invasion
dtbl$evaluation[dtbl$skill=="B" & dtbl$evaluation_code=="/"] <- "Error"
Expand Down

0 comments on commit a9919f9

Please sign in to comment.