Skip to content

Commit

Permalink
Fixing staff requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikey committed Jan 7, 2025
1 parent 21de081 commit a3edfa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/GameLogging.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def staff_request(self, ctx: commands.Context, reason: str):
"created_at": datetime.datetime.now(tz=pytz.UTC),
"acked": []
}
result = await self.bot.staff_requests.insert_one(document)
result = await self.bot.staff_requests.db.insert_one(document)
o_id = result.inserted_id
self.bot.dispatch("staff_request_send", o_id)
await ctx.send(
Expand Down

0 comments on commit a3edfa0

Please sign in to comment.