Skip to content

Commit

Permalink
made the default value 1 to fix a few possible DB issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbevers committed Jul 17, 2023
1 parent 5a83c82 commit 244d63d
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,15 @@ export function PlayerEntry({ won, winToggleNumber, playerInfo, data, index, lis
godName: "string",
godIcon: null
},
damageDealt: 0,
damageTaken: 0,
damageMitigated: 0,
kills: 0,
deaths: 0,
assists: 0,
level: 0,
goldEarned: 0,
gpm: 0,
damageDealt: 1,
damageTaken: 1,
damageMitigated: 1,
kills: 1,
deaths: 1,
assists: 1,
level: 1,
goldEarned: 1,
gpm: 1,
healing: 0,
relic1ID: 0,
relic2ID: 0,
Expand Down

0 comments on commit 244d63d

Please sign in to comment.