Made stuff look nice

This commit is contained in:
Luke Rogers 2012-04-03 08:06:31 +12:00
parent cb474ddc03
commit d666c5db45

View file

@ -124,9 +124,9 @@ def raw(inp, conn=None, notice=None):
@hook.command(adminonly=True) @hook.command(adminonly=True)
def say(inp, conn=None, chan=None, notice=None): def say(inp, conn=None, chan=None, notice=None):
".say [channel] <message> -- Makes the bot say <message> in [channel]. "\ ".say [channel] <message> -- Makes the bot say <message> in [channel]. " \
"If [channel] is blank the bot will say the <message> in "\ "If [channel] is blank the bot will say the <message> in the channel " \
"the channel the command was used in." "the command was used in."
inp = inp.split(" ") inp = inp.split(" ")
if inp[0][0] == "#": if inp[0][0] == "#":
message = "" message = ""
@ -146,9 +146,9 @@ def say(inp, conn=None, chan=None, notice=None):
@hook.command("act", adminonly=True) @hook.command("act", adminonly=True)
@hook.command(adminonly=True) @hook.command(adminonly=True)
def me(inp, conn=None, chan=None, notice=None): def me(inp, conn=None, chan=None, notice=None):
".me [channel] <action> -- Makes the bot act out <action> in [channel] "\ ".me [channel] <action> -- Makes the bot act out <action> in [channel]. " \
"If [channel] is blank the bot will act the <action> in "\ "If [channel] is blank the bot will act the <action> in the channel the" \
"the channel the command was used in." " command was used in."
inp = inp.split(" ") inp = inp.split(" ")
if inp[0][0] == "#": if inp[0][0] == "#":
message = "" message = ""