aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/rps.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/fun/rps.py')
-rw-r--r--bot/exts/fun/rps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/rps.py b/bot/exts/fun/rps.py
index c6bbff46..50129835 100644
--- a/bot/exts/fun/rps.py
+++ b/bot/exts/fun/rps.py
@@ -52,6 +52,6 @@ class RPS(commands.Cog):
await ctx.send(f"Sir Lancebot played {bot_move}! {player_mention} lost!")
-def setup(bot: Bot) -> None:
+async def setup(bot: Bot) -> None:
"""Load the RPS Cog."""
- bot.add_cog(RPS(bot))
+ await bot.add_cog(RPS(bot))