diff --git a/plugins/factoids.py b/plugins/factoids.py index 0bccc64..74b3e1f 100755 --- a/plugins/factoids.py +++ b/plugins/factoids.py @@ -47,9 +47,6 @@ def multiwordReplace(text, wordDic): @hook.command(adminonly=True) def remember(inp, nick='', db=None, say=None, input=None, notice=None): ".remember [+] -- Remembers with . Add + to to append." - if input.nick not in input.bot.config["admins"]: - notice("Only bot admins can use this command!") - return db_init(db) append = False @@ -93,9 +90,6 @@ def remember(inp, nick='', db=None, say=None, input=None, notice=None): @hook.command(adminonly=True) def forget(inp, db=None, input=None, notice=None): ".forget -- Forgets a remembered ." - if input.nick not in input.bot.config["admins"]: - notice("Only bot admins can use this command!") - return db_init(db) data = get_memory(db, inp)