diff options
-rw-r--r-- | bot/resources/valentines/bemyvalentine_valentines.json | 14 | ||||
-rw-r--r-- | bot/seasons/valentines/be_my_valentine.py | 11 |
2 files changed, 11 insertions, 14 deletions
diff --git a/bot/resources/valentines/bemyvalentine_valentines.json b/bot/resources/valentines/bemyvalentine_valentines.json index 751fe5ef..7d5d3705 100644 --- a/bot/resources/valentines/bemyvalentine_valentines.json +++ b/bot/resources/valentines/bemyvalentine_valentines.json @@ -22,14 +22,14 @@ ], "valentine_compliments": [ - "To the love of my life. I’m the luckiest person on Earth because I have you! I adore you!You’ve taught me the best thing to hold onto in life is each other.You are my sweetheart, you are my life, you are my everything.", + "To the love of my life. I’m the luckiest person on Earth because I have you! I adore you! You’ve taught me that the best thing to hold onto in life is each other. You are my sweetheart, you are my life, you are my everything.", "It was a million tiny little things that, when you added them all up, they meant we were supposed to be together.", - "when you smile, the whole world stops and stares for a while, cause you're amazing, just the way you are", + "When you smile, the whole world stops and stares for a while, cause you're amazing, just the way you are.", "Take love, multiply it by infinity and take it to the depths of forever... and you still have only a glimpse of how I feel for you.", - "When you kiss me, the world just melts away. When you hold me in your arms, I feel safe. Being in love with you has made me see how wonderful life can be. I love you. ", - "No matter how dark the days get, you still know how to make me smile and Even after all this time, you still take my breath away. ", - "I don't know what my future holds but I know I want you in it but I would travel to the moon and back just to see you smile.", - "I may not always say it but know that With every breath in my body and every beat of my heart I know I will always love you. ", + "When you kiss me, the world just melts away. When you hold me in your arms, I feel safe. Being in love with you has made me see how wonderful life can be. I love you.", + "No matter how dark the days get, you still know how to make me smile. Even after all this time, you still take my breath away.", + "I don't know what my future holds, but I know I want you in it. I would travel to the moon and back just to see you smile.", + "I may not always say it, but know that with every breath in my body and every beat of my heart I know I will always love you.", "Darling I will be loving you till we're 70. And baby my heart could still fall as hard at 23. And I'm thinking about how people fall in love in mysterious ways. Maybe just the touch of a hand. Oh me, I fall in love with you every single day. And I just wanna tell you I am. So honey now. Take me into your loving arms. Kiss me under the light of a thousand stars. Place your head on my beating heart. I'm thinking out loud. Maybe we found love right where we are.", "I love you. I knew it the minute I met you. I'm sorry it took so long for me to catch up. I just got stuck.", "You are truly beautiful from within. I am serious! It's not just about how pretty you are (which you are, of course), but you have a beautiful heart.", @@ -42,4 +42,4 @@ ] -}
\ No newline at end of file +} diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py index 83c02841..0046ceb4 100644 --- a/bot/seasons/valentines/be_my_valentine.py +++ b/bot/seasons/valentines/be_my_valentine.py @@ -94,8 +94,8 @@ class BeMyValentine: return await ctx.send(message) if user == ctx.author: - # Well a user cant valentine himself/herself. - return await ctx.send('Come on dude, you cant send a valentine to yourself :expressionless:') + # Well a user can't valentine himself/herself. + return await ctx.send("Come on dude, you can't send a valentine to yourself :expressionless:") emoji_1, emoji_2 = self.random_emoji() lovefest_role = discord.utils.get(ctx.guild.roles, id=Lovefest.role_id) @@ -199,11 +199,8 @@ class BeMyValentine: """ if author in members: members.remove(author) - if len(members) != 0: - user = random.choice(members) - else: - user = None - return user + + return random.choice(members) if members else None @staticmethod def random_emoji(): |