|
|
@ -121,9 +121,21 @@ class Fun(commands.Cog):
|
|
|
|
await asyncio.sleep(2.5)
|
|
|
|
await asyncio.sleep(2.5)
|
|
|
|
# Delete the message
|
|
|
|
# Delete the message
|
|
|
|
await message.delete()
|
|
|
|
await message.delete()
|
|
|
|
|
|
|
|
|
|
|
|
except FileNotFoundError as e:
|
|
|
|
except FileNotFoundError as e:
|
|
|
|
print(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):
|
|
|
|
def setup(bot):
|
|
|
|
bot.add_cog(Fun(bot))
|
|
|
|
bot.add_cog(Fun(bot))
|
|
|
|