From 883ef7549ef78325859ff6619dfee21f20ba419a Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 25 Apr 2023 01:56:10 -0500 Subject: [PATCH] Updating help text --- help_text.py | 10 ++++------ helpers.py | 4 ++-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/help_text.py b/help_text.py index 4642804..81de7ac 100644 --- a/help_text.py +++ b/help_text.py @@ -86,24 +86,22 @@ HELP_TS_MARKET = ( HELP_TS_MENU = ( f'In the top bar (to the far right of File / Edit) is a Paper Dynasty tab. When that is selected, ' f'you have access to the automations built into your team sheet.\n\n' - f'Data Refresh - resync all data imports across your sheet and is a good first step ' - f'if things arent\'t loading on your sheet\n' f'Rosters - save or clear your saved rosters and lineups\n' f'Marketplace - buy it now, add to card, and quick sell cards\n' f'Shopping Cart - manage your cart and purchase multiple cards at once\n' - f'Sale Barn - bulk sell cards in the bottom-left corner of your team sheet' + f'Sale Barn - bulk sell cards in the bottom-left corner of your team sheet\n' + f'Player Stats - activate and refresh your team stats\n' + f'Data Imports - sync data between the pd bot and your team sheet\n' ) HELP_REWARDS_PREMIUM = ( '- Win a 9-inning game\n' - '- Finish in top half of weekly standings\n' '- Purchasable for 200₼\n' '- Purchasable for $3 on the ko-fi shop' ) HELP_REWARDS_STANDARD = ( '- Win a 3-inning game\n' - '- Play at least one game per week\n' '- Purchasable for 100₼\n' '- Every fifth check-in (`/comeonmanineedthis`)\n' '- Purchasable for $2 on the ko-fi shop' @@ -123,7 +121,7 @@ HELP_START_WHAT = ( f'Well, whipper snapper, have a seat and I\'ll tell you. We\'re running a diamond dynasty / ' f'perfect team style game with electronic card and dice baseball!\n\nGet a starter pack, play ' f'games at your leisure either solo or against another player, and collect cards from the ' - f'custom 2021 player set.' + f'custom Paper Dynasty player sets.' ) HELP_START_HOW = ( diff --git a/helpers.py b/helpers.py index 0f5a379..71f8c11 100644 --- a/helpers.py +++ b/helpers.py @@ -1493,7 +1493,7 @@ async def display_cards( if view.value == 'cancel': await msg.edit(view=None) if add_roster: - await follow_up.edit(content=f'Here is your roster sheet: {get_roster_sheet(team)}') + await follow_up.edit(content=f'Refresh your cards here: {get_roster_sheet(team)}') return True if view.value == 'left': page_num -= 1 if page_num > 0 else 0 @@ -1503,7 +1503,7 @@ async def display_cards( if page_num == len(card_embeds) - 1: await msg.edit(view=None) if add_roster: - await follow_up.edit(content=f'Here is your roster sheet: {get_roster_sheet(team)}') + await follow_up.edit(content=f'Refresh your cards here: {get_roster_sheet(team)}') return True else: page_num += 1