[Mod] Add [p]slowmode (#2734)

Makes use of new timedelta converter
This commit is contained in:
DevilXD
2019-05-29 02:01:27 +02:00
committed by Toby Harradine
parent 1581604f71
commit aac9369f3f
2 changed files with 43 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ from .kickban import KickBanMixin
from .movetocore import MoveToCore
from .mutes import MuteMixin
from .names import ModInfo
from .slowmode import Slowmode
from .settings import ModSettings
_ = T_ = Translator("Mod", __file__)
@@ -36,6 +37,7 @@ class Mod(
MoveToCore,
MuteMixin,
ModInfo,
Slowmode,
commands.Cog,
metaclass=CompositeMetaClass,
):