Adding lukas command

pull/2/head
sgoudham 4 years ago
parent b6ac53c0b2
commit 626e6d0f62

@ -121,9 +121,21 @@ class Fun(commands.Cog):
await asyncio.sleep(2.5)
# Delete the message
await message.delete()
except FileNotFoundError as e:
print(e)
# Bot ~8Ball command
@commands.command(aliases=['Lukas'])
@cooldown(1, 0.5, BucketType.channel)
@commands.has_any_role('Lukas (Server Booster)')
async def lukas(self, ctx):
lukasID = '<@395653002050011166>'
bubzID = '<@422588717744652289>'
await ctx.send(
f"{lukasID} loves {bubzID} with all his heart <:awie:676201100793085952> <:awie:676201100793085952>")
def setup(bot):
bot.add_cog(Fun(bot))

Loading…
Cancel
Save