vibe-plugin

vibe plugin for nurdspace ghbot
git clone git://r-36.net/vibe-plugin
Log | Files | Refs

commit 200378fb9c20fbc4e89e96d042e6d265eeb2ce8c
parent 0428a8764e128b89885a5e08c66dc04320d980d1
Author: Christoph Lohmann <20h@r-36.net>
Date:   Wed, 31 Dec 2025 14:33:26 +0100

Fix the s.

Diffstat:
Mvibe.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vibe.py b/vibe.py @@ -70,7 +70,7 @@ def on_message(client, userdata, message): response_topic = f'{topic_prefix}to/irc/{channel}/notice' if command == 'vibe': if len(tokens) > 1: - dancemoves = gen_dance_moves(vibemove=token[2]) + dancemoves = gen_dance_moves(vibemove=tokens[2]) else: dancemoves = gen_dance_moves() client.publish(response_topic, dancemoves)