aboutsummaryrefslogtreecommitdiff
path: root/config/xp_reduce.go
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-09-26 18:30:57 +0200
committerWilliam Hergès <william@herges.fr>2025-09-26 18:30:57 +0200
commitb61a834b608df3d5e617912eefb28924ef3a46df (patch)
tree00d2e373ba52b6091585c6a2c91e4b9f36c9af86 /config/xp_reduce.go
parent80c147d5430bb3d8894231de3b6e960bcae43694 (diff)
build(gokord): bump to latest nightly
Diffstat (limited to 'config/xp_reduce.go')
-rw-r--r--config/xp_reduce.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/xp_reduce.go b/config/xp_reduce.go
index bf04bf0..c3a3e10 100644
--- a/config/xp_reduce.go
+++ b/config/xp_reduce.go
@@ -5,9 +5,10 @@ import (
"strconv"
"github.com/anhgelus/gokord/cmd"
- discordgo "github.com/nyttikord/gokord"
+ "github.com/nyttikord/gokord/bot"
"github.com/nyttikord/gokord/component"
"github.com/nyttikord/gokord/discord/types"
+ "github.com/nyttikord/gokord/event"
"github.com/nyttikord/gokord/interaction"
)
@@ -16,7 +17,7 @@ const (
TimeReduceSet = "time_reduce_set"
)
-func HandleModifyPeriodicReduceCommand(s *discordgo.Session, i *discordgo.InteractionCreate, _ *interaction.MessageComponentData, resp *cmd.ResponseBuilder) {
+func HandleModifyPeriodicReduceCommand(s bot.Session, i *event.InteractionCreate, _ *interaction.MessageComponentData, _ *cmd.ResponseBuilder) {
cfg := GetGuildConfig(i.GuildID)
response := interaction.Response{
Type: types.InteractionResponseModal,
@@ -48,7 +49,7 @@ func HandleModifyPeriodicReduceCommand(s *discordgo.Session, i *discordgo.Intera
}
}
-func HandleTimeReduceSet(s *discordgo.Session, i *discordgo.InteractionCreate, data *interaction.ModalSubmitData, resp *cmd.ResponseBuilder) bool {
+func HandleTimeReduceSet(s bot.Session, i *event.InteractionCreate, data *interaction.ModalSubmitData, resp *cmd.ResponseBuilder) bool {
v := data.Components[0].(*component.Label).Component.(*component.TextInput).Value
days, err := strconv.Atoi(v)
if err != nil {