Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ChOp] Fix kick message
  • Loading branch information
sfan5 committed May 23, 2013
1 parent 955512d commit bae3d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chop.py
Expand Up @@ -91,7 +91,7 @@ def kick(phenny, input):
if len(arg) < 2: return
if arg[0].startswith('#'):
if len(arg) < 3: return
phenny.write(['KICK', arg[0], arg[1]], arg[2])
phenny.write(['KICK', arg[0], arg[1]], ' '.join(arg[2:]))
else:
phenny.write(['KICK', input.sender, arg[0]], arg[1])

Expand Down

0 comments on commit bae3d93

Please sign in to comment.