changes violence arround a bit
This commit is contained in:
parent
acb59d8bc5
commit
f3c8a54d3f
4 changed files with 130 additions and 122 deletions
|
@ -31,7 +31,9 @@ def kill(inp, me = None, nick = None, input=None, notice=None):
|
|||
return
|
||||
|
||||
if inp == input.conn.nick.lower() or inp == "itself":
|
||||
msg = 'kills ' + nick + ' and rakes their corpse (:3)'
|
||||
kill = random.choice(kills)
|
||||
kill = re.sub ('<who>', nick, kill)
|
||||
msg = re.sub ('<body>', random.choice(body), kill)
|
||||
else:
|
||||
kill = random.choice(kills)
|
||||
kill = re.sub ('<who>', inp, kill)
|
||||
|
|
Reference in a new issue