diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 9f8a2a3..8810f2f 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,14 +3,21 @@ Thanks to everyone who has contributed to CloudBot! Come in IRC and ping me if I Luke Rogers (lukeroge) Neersighted blha303 -KsaRedFx -urbels cybojenix +KsaRedFx +nathanblaney +thenoodle68 +nasonfish +urbels +puffrfish +Sepero +TheFiZi +mikeleigh Spudstabber frozenMC frdmn -puffrfish -nasonfish + + We are using code from the following projects: ./plugins/mlia.py - https://github.com/infinitylabs/UguuBot diff --git a/plugins/admin.py b/plugins/admin.py index 70b73ac..851e642 100755 --- a/plugins/admin.py +++ b/plugins/admin.py @@ -187,10 +187,11 @@ def say(inp, conn=None, chan=None): If [channel] is blank the bot will say the in the channel the command was used in.""" inp = inp.split(" ") - message = " ".join(inp[1:]) if inp[0][0] == "#": + message = " ".join(inp[1:]) out = "PRIVMSG %s :%s" % (inp[0], message) else: + message = " ".join(inp[0:]) out = "PRIVMSG %s :%s" % (chan, message) conn.send(out)