Skip to content

Commit

Permalink
changed action counter to track tech in/away instead of forward/backw…
Browse files Browse the repository at this point in the history
…ard. Also modified the tests
  • Loading branch information
Ckoenig1 committed Aug 5, 2021
1 parent 84eeaa0 commit 99b6001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/stats/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export class ActionsComputer implements StatComputer<ActionCountsType[]> {
down: 0,
},
groundTechCount: {
// tech away/in are in reference to the opponents position and not the stage
away: 0,
in: 0,
neutral: 0,
Expand Down
1 change: 1 addition & 0 deletions src/stats/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export interface ActionCountsType {
down: number;
};
groundTechCount: {
// tech away/in are in reference to the opponents position and not the stage
away: number;
in: number;
neutral: number;
Expand Down

0 comments on commit 99b6001

Please sign in to comment.