diff --git a/plugins/kill.py b/plugins/kill.py index 272f4c0..33beea0 100755 --- a/plugins/kill.py +++ b/plugins/kill.py @@ -45,7 +45,7 @@ def kill(inp, me=None, nick=None, input=None, notice=None): target = inp else: target = nick - kill = random.choice(kills) - kill = re.sub ('', target, target) - kill = re.sub ('', random.choice(body), target) - me(kill) + msg = random.choice(kills) + msg = re.sub ('', target, target) + msg = re.sub ('', random.choice(body), target) + me(msg)