Skip to content

Commit

Permalink
Remove hero null on round end
Browse files Browse the repository at this point in the history
  • Loading branch information
James Abad committed May 20, 2023
1 parent 5d79e3e commit f47e5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ const createDTO = (events: any) => {
if (event[OW_EVENT_KEYS.RND_E]) {
for (const player of Object.keys(PLAYERS)) {
if (PLAYERS[player]) {
PLAYERS[player].hero = null;
// PLAYERS[player].hero = null;
PLAYERS[player].ultimate_status = null;
}
}
Expand Down

0 comments on commit f47e5a4

Please sign in to comment.