Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MokeEire committed Oct 29, 2020
2 parents 9e9c550 + 2297b86 commit 7dc38e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.R
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,7 @@ observeEvent(input$resume_no, {
group_by(game_id) %>%
summarise(points_a = sum((team == "A")*total_points),
points_b = sum((team == "B")*total_points),
rounds = as.integer(vals$shot_num-1),
rounds = as.integer(vals$shot_num),
ones = sum(ones),
twos = sum(twos),
threes = sum(threes),
Expand All @@ -1860,7 +1860,7 @@ observeEvent(input$resume_no, {
group_by(game_id) %>%
summarise(points_a = sum((team == "A")*total_points),
points_b = sum((team == "B")*total_points),
rounds = as.integer(vals$shot_num-1),
rounds = as.integer(vals$shot_num),
ones = sum(ones),
twos = sum(twos),
threes = sum(threes),
Expand Down

0 comments on commit 7dc38e9

Please sign in to comment.