Kill non-f aliases for fsay/fact

Many of these aliases are words that begin sentences. Saying them in
wolfchat/deadchat then makes the bot pm random people with stuff. Let's
NOT do that, kthx. fact is also a word, so replacing that with fdo.
This commit is contained in:
skizzerz 2017-08-09 12:08:01 -05:00
parent ad5ab73e00
commit a9915e09fe

View File

@ -6978,13 +6978,13 @@ def _say(wrapper, rest, cmd, action=False):
targ.send(message, privmsg=True)
@command("say", "fsay", flag="s", pm=True)
@command("fsay", flag="s", pm=True)
def fsay(var, wrapper, message):
"""Talk through the bot as a normal message."""
_say(wrapper, message, "say")
@command("act", "do", "me", "fact", "fdo", "fme", flag="s", pm=True)
def fact(var, wrapper, message):
@command("fdo", "fme", flag="s", pm=True)
def fdo(var, wrapper, message):
"""Act through the bot as an action."""
_say(wrapper, message, "act", action=True)