Merge branch 'master' of https://github.com/aveao/robocop-ng
This commit is contained in:
commit
79707d49e6
3 changed files with 7 additions and 3 deletions
|
@ -13,8 +13,8 @@ Based on https://gitlab.com/ao/dpybotbase
|
|||
- [x] membercount command
|
||||
- [ ] Verification (and reset)
|
||||
- [ ] Logging joins, leaves, role changes, deletes, bans, kicks
|
||||
- [ ] Moderation commands (ban, kick, approve, revoke, addhacker, removehacker, lock, unlock, softlock, mute, unmute, playing, botnickname, nickname, clear)
|
||||
- [ ] Warns system (warn, delwarn, listwarns, clearwarns, clearwarnsid, listwarnsid, delwarnid)
|
||||
- [ ] Moderation commands (ban, kick, userinfo, approve-revoke, addhacker-removehacker, lock-softlock-timelock-unlock, mute-mutetime-unmute, playing, botnickname, nickname, clear, probate-unprobate)
|
||||
- [ ] Warns system (warn, delwarnid-delwarn, listwarns-listwarnsid, clearwarns-clearwarnsid)
|
||||
- [ ] User notes
|
||||
- [x] Meme commands and pegaswitch (honestly the easiest part)
|
||||
- [ ] .serr and .err
|
||||
|
|
|
@ -3,7 +3,6 @@ import sys
|
|||
import logging
|
||||
import logging.handlers
|
||||
import traceback
|
||||
from pathlib import Path
|
||||
import aiohttp
|
||||
import config
|
||||
|
||||
|
|
|
@ -30,6 +30,11 @@ class Meme:
|
|||
await ctx.send(f"{user.mention} warmed."
|
||||
f" User is now {random.randint(0, 100)}°C.")
|
||||
|
||||
@commands.command(hidden=True)
|
||||
async def memebercount(self, ctx):
|
||||
"""Checks memeber count, as requested by dvdfreitag"""
|
||||
await ctx.send("There's like, uhhhhh a bunch")
|
||||
|
||||
@commands.command(hidden=True)
|
||||
async def frolics(self, ctx):
|
||||
"""test"""
|
||||
|
|
Loading…
Reference in a new issue