From e27cb0c1e0b48086f340b724c244a0920a3117f4 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 6 Aug 2015 12:27:10 +0200 Subject: [PATCH] Add another ping message --- src/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index ebd490b..0c9f2e9 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -615,7 +615,7 @@ def restart_program(cli, nick, chan, rest): @cmd("ping", pm=True) def pinger(cli, nick, chan, rest): """Check if you or the bot is still connected.""" - message = random.choice(var.PING_MESSAGES) + message = random.choice(var.PING_MESSAGES).format(nick=nick) if chan == nick: pm(cli, nick, message)