From aa0b6c1b27cc839116597b3900f6eb46347abef2 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 22 Oct 2020 17:28:27 -0700 Subject: [PATCH] Actually wire up the state command Or else it won't do anything. --- turbot/interaction.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/turbot/interaction.py b/turbot/interaction.py index d745a7a..78e209a 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -417,3 +417,5 @@ def state(turb, body, args): table.put_item(Item=puzzle) set_channel_topic(turb, puzzle) + +commands["/state"] = state -- 2.43.0