mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-22 20:25:34 +00:00
Allow analyze command to be executed by everyone (#71)
This commit is contained in:
parent
492d43c608
commit
351b9655e3
|
@ -4,7 +4,7 @@ import re
|
|||
import aiohttp
|
||||
from discord import Colour, Embed, Message, Attachment
|
||||
from discord.ext import commands
|
||||
from discord.ext.commands import Cog, Context
|
||||
from discord.ext.commands import Cog, Context, BucketType
|
||||
|
||||
from robocop_ng.helpers.checks import check_if_staff
|
||||
from robocop_ng.helpers.disabled_ids import (
|
||||
|
@ -513,7 +513,7 @@ class LogFileReader(Cog):
|
|||
),
|
||||
)
|
||||
|
||||
@commands.check(check_if_staff)
|
||||
@commands.cooldown(3, 30, BucketType.channel)
|
||||
@commands.command(
|
||||
aliases=["analyselog", "analyse_log", "analyze", "analyzelog", "analyze_log"]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue