commit db163e53c334002765d5779f12db1ffb7c167d74
parent 200378fb9c20fbc4e89e96d042e6d265eeb2ce8c
Author: Christoph Lohmann <20h@r-36.net>
Date: Wed, 31 Dec 2025 14:34:22 +0100
Fix the argument.
Diffstat:
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=tokens[2])
+ dancemoves = gen_dance_moves(vibemove=tokens[1])
else:
dancemoves = gen_dance_moves()
client.publish(response_topic, dancemoves)