creating command map on New call

This commit is contained in:
jake 2025-06-04 16:08:35 -04:00
parent 7b6571ecdb
commit a9fb893624

View File

@ -51,7 +51,8 @@ func New() *bolt {
bot.Identify.Intents = BOT_INTENTS
return &bolt{
Session: bot,
Session: bot,
Commands: make(map[string]Command, 0),
}
}