From f9ddfaaad5435f1c1d24aa112393448920b03856 Mon Sep 17 00:00:00 2001 From: neersighted Date: Tue, 3 Apr 2012 13:58:15 -0700 Subject: [PATCH] Fixed flirt bug --- plugins/feelings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/feelings.py b/plugins/feelings.py index 3141ceb..2710afa 100755 --- a/plugins/feelings.py +++ b/plugins/feelings.py @@ -52,5 +52,5 @@ def flirt(inp, nick=None, me=None, conn=None): else: target = inp - out = 'insults %s... "%s"' % (target, random.choice(flirts)) + out = 'flirts with %s... "%s"' % (target, random.choice(flirts)) me(out)