Removed poken factoid prefixes, added more HTML entity codes to the URL parser

This commit is contained in:
Luke Rogers 2011-11-26 13:16:55 +13:00
parent fbde2addaa
commit ac6a19947a

View file

@ -21,7 +21,6 @@ def get_memory(db, word):
return None return None
@hook.command("+")
@hook.command("r") @hook.command("r")
def remember(inp, nick='', db=None, say=None, input=None, notice=None): def remember(inp, nick='', db=None, say=None, input=None, notice=None):
".r <word> [+]<data> -- maps word to data in the memory" ".r <word> [+]<data> -- maps word to data in the memory"
@ -66,7 +65,6 @@ def remember(inp, nick='', db=None, say=None, input=None, notice=None):
notice('Remembered!') notice('Remembered!')
return return
@hook.command("-")
@hook.command("f") @hook.command("f")
def forget(inp, db=None): def forget(inp, db=None):
".f <word> -- forgets the mapping that word had" ".f <word> -- forgets the mapping that word had"