Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
fixed referral not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
fazalfarhan01 committed Dec 4, 2021
1 parent 8393a5b commit 94992e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ def display_initial_info(graphics, info: AllInformation):
graphics.info(f"Multiplier: {info.earnings_info.multiplier}")
graphics.info(f"Balance: {info.earnings_info.balance}")
graphics.info(f"Lifetime Balance: {info.earnings_info.earnings_total}")
graphics.info(f"Referral Balance: -") #here
graphics.info(f"Referral Balance: {info.earnings_info.bonuses}") #here
graphics.info(
f"Lifetime Referral Balance: -") #here
f"Lifetime Referral Balance: {info.earnings_info.bonuses_total}") #here
graphics.info(f"Total Devices: {info.devices_info.total_devices}")
graphics.info(f"\tWindows: {info.devices_info.windows_devices}")
graphics.info(f"\tLinux: {info.devices_info.linux_devices}")
Expand Down
2 changes: 1 addition & 1 deletion app/webhooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def balance_update(self, info: AllInformation):
embed.add_embed_field(name="Balance",
value=f"{info.earnings_info.balance}$")
embed.add_embed_field(name="Referral Balance",
value=f"-")
value=f"{info.earnings_info.bonuses}$")
embed.add_embed_field(name="Lifetime Balance",
value=f"{info.earnings_info.earnings_total}$")
embed.add_embed_field(
Expand Down

0 comments on commit 94992e4

Please sign in to comment.