Skip to content

Commit 29f8317

Browse files
committed
fix(stats): player true shooting precision fix
1 parent e1a18f7 commit 29f8317

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/stats/service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,8 +652,8 @@ export const getPlayerSeasonStats = async (
652652
Math.round(
653653
(Number(player.points) /
654654
(2 * (Number(player.fga) + 0.44 * Number(player.fta)))) *
655-
10,
656-
) / 10,
655+
1000,
656+
) / 1000,
657657
fieldGoals: {
658658
made: Number(player.fgm),
659659
attempted: Number(player.fga),

0 commit comments

Comments
 (0)