Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed Jan 21, 2024
1 parent a891951 commit 2db3833
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ FBGM
- need some kind of "milking the clock" mode, where you take longer between plays, and also actively try to not go out of bounds
- move some TFL from LB to DL https://discord.com/channels/290013534023057409/569726303926878219/1180748752215085138
- interception in the enzone showing outside the endzone in drive chart, why? https://discord.com/channels/290013534023057409/290015591216054273/1195441266029232220
- missed FG should put the ball at least on the 20 https://mail.google.com/mail/u/0/#inbox/FMfcgzGwJmDMcvCdTBhDpQRBpZbRlDnB?compose=GTvVlcRzBlKZpWSJKcGwhBWJsgxgxdqPxQPmDLdmNdGrSGjdShXVtnVbPplhHMkvhhNnRBFngBljz
- drive chart weirdness for successful onside kicks https://mail.google.com/mail/u/0/#inbox/FMfcgzGwJmLJLlZPKfvvFDnjqDfFXwpq
- better timeout management
- offense shouldn't take timeout if it's just saving time for the other team, like after 3rd down in a tied game when they are about to punt

wrong team abbrev various places
- functions for helping
Expand Down
1 change: 1 addition & 0 deletions src/ui/util/processLiveGameEvents.baseball.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ export const getText = (
} else {
runnersText = formatRunners(getName, event.runners);
}
console.log(event.outs, runnersText.includes("score"));

if (runnersText) {
if (!text.endsWith("!") && !text.endsWith(".") && !text.endsWith(",")) {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/util/processLiveGameEvents.football.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export const getText = (event: PlayByPlayEvent, numPeriods: number) => {
) : (
""
)}
${event.names[0]} recovered the fumble in the endzone, resulting in a{" "}
{event.names[0]} recovered the fumble in the endzone, resulting in a{" "}
{event.safety ? "safety!" : "touchback"}
</>
);
Expand Down

0 comments on commit 2db3833

Please sign in to comment.