diff options
| author | 2019-02-27 16:49:07 +1000 | |
|---|---|---|
| committer | 2019-02-27 16:49:07 +1000 | |
| commit | 49b62496af48c0fadec7ceb9ce5cf3bfa68e6914 (patch) | |
| tree | c765ffb2badf080213b841399a3129e1389b1edc /bot/seasons/valentines/savethedate.py | |
| parent | Merge pull request #123 from RohanJnr/valentine_zodiac_iceman (diff) | |
| parent | changed variable name from message to time_remaining (diff) | |
Merge pull request #120 from RohanJnr/small_changes_iceman
added help message for .savethedate and edited the error_message for cooldown error
Diffstat (limited to 'bot/seasons/valentines/savethedate.py')
| -rw-r--r-- | bot/seasons/valentines/savethedate.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/seasons/valentines/savethedate.py b/bot/seasons/valentines/savethedate.py index a9bddd34..b9484be9 100644 --- a/bot/seasons/valentines/savethedate.py +++ b/bot/seasons/valentines/savethedate.py @@ -23,6 +23,9 @@ class SaveTheDate: @commands.command() async def savethedate(self, ctx): + """ + Gives you ideas for what to do on a date with your valentine. + """ with open(Path('bot', 'resources', 'valentines', 'date_ideas.json'), 'r', encoding="utf8") as f: valentine_dates = load(f) random_date = random.choice(valentine_dates['ideas']) |