From a9fb893624d44dc95019eccd03db733cf5f8c2c6 Mon Sep 17 00:00:00 2001 From: jake Date: Wed, 4 Jun 2025 16:08:35 -0400 Subject: [PATCH] creating command map on New call --- bolt.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bolt.go b/bolt.go index 5478a2c..d01d268 100644 --- a/bolt.go +++ b/bolt.go @@ -51,7 +51,8 @@ func New() *bolt { bot.Identify.Intents = BOT_INTENTS return &bolt{ - Session: bot, + Session: bot, + Commands: make(map[string]Command, 0), } }