From e86915927c45c33083291ac09d97deb4fcf132f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Fri, 10 May 2019 19:34:51 +0300 Subject: [PATCH] Send a message on bot add --- gameloop.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gameloop.py b/gameloop.py index a14d51c..93d37b8 100644 --- a/gameloop.py +++ b/gameloop.py @@ -306,6 +306,7 @@ def game(send, notice, voice, devoice, get_event): name, = args if name not in bots: bots[name] = Rando(name) + send('Bot %s added' % name) else: send('Bot named %s already exists' % name)