diff options
| author | 2021-06-04 16:56:38 +0530 | |
|---|---|---|
| committer | 2021-06-04 16:56:38 +0530 | |
| commit | 9be669267b3261478049c3f478861f9a09f9a820 (patch) | |
| tree | 21d6fbf7e63fb1ae68138633a3682a0037e62fa0 /bot/exts | |
| parent | added logical spacing and removed redundant code (diff) | |
removed guild_only, now user can DM this command too!
Diffstat (limited to 'bot/exts')
| -rw-r--r-- | bot/exts/evergreen/rps.py | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/rps.py b/bot/exts/evergreen/rps.py index d07f9c60..8d844234 100644 --- a/bot/exts/evergreen/rps.py +++ b/bot/exts/evergreen/rps.py @@ -2,7 +2,6 @@ from random import choice  from discord import Member, TextChannel  from discord.ext import commands -from discord.ext.commands import guild_only  from bot.bot import Bot @@ -72,7 +71,6 @@ class RPS(commands.Cog):          else:              await channel.send(f"Sir Lancebot played {bot_move.upper()}! {player.mention} Lost!") -    @guild_only()      @commands.command(case_insensitive=True)      async def rps(self, ctx: commands.Context, move: str) -> None:          """Play the classic game of Rock Paper Scissor with your own sir-lancebot!""" | 
