Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicTheDev committed Mar 25, 2024
1 parent 1f0a965 commit af3254e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bot/player/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,12 @@ def recursive_defaultdict():
only_once[parent] += 1

if type_ in online_types:
BEEN_ONLINE = True
#if we are comparing, say donations, we only want them to be online because donos went up.. not down because of season reset
if isinstance(value, int):
if value > old_value:
BEEN_ONLINE = True
else:
BEEN_ONLINE = True

if type_ in ws_types:
type_changes.append(type_)
Expand Down

0 comments on commit af3254e

Please sign in to comment.