changes violence arround a bit

This commit is contained in:
neersighted 2012-02-28 23:31:42 -08:00
parent acb59d8bc5
commit f3c8a54d3f
4 changed files with 130 additions and 122 deletions

View file

@ -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)