Skip to content

Commit ad9f60d

Browse files
committed
ExtendedEconomy - show role bonus value in settings view
1 parent bc5894b commit ad9f60d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extendedeconomy/common/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def format_settings(
130130
# If not global
131131
txt.write(_("`Stack Roles: `{}\n").format(conf.stack_paydays) if not is_global else "")
132132
if not is_global:
133-
bonuses = ", ".join([f"<@&{r}>" for r in conf.role_bonuses]) if conf.role_bonuses else _("None")
133+
bonuses = ", ".join([f"<@&{r}>: {b}" for r, b in conf.role_bonuses.items()]) if conf.role_bonuses else _("None")
134134
txt.write(_("`Role Bonuses: `{}\n").format(bonuses) if not is_global else "")
135135
txt.write(_("`Payday Autoclaim: `{}\n").format(db.auto_payday_claim))
136136
if not is_global:

extendedeconomy/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ExtendedEconomy(
3333
"""
3434

3535
__author__ = "[vertyco](https://github.com/vertyco/vrt-cogs)"
36-
__version__ = "0.7.0"
36+
__version__ = "0.7.1"
3737

3838
def __init__(self, bot: Red):
3939
super().__init__()

0 commit comments

Comments
 (0)