diff --git a/commands.go b/commands.go
index d67fdb1..10b0d97 100644
--- a/commands.go
+++ b/commands.go
@@ -124,9 +124,9 @@ func BumpSet(b BotCommand) bool {
 	defer log.PanicSafe()
 	bump = false
 	parts := strings.Split(b.Message.Content, " ")
-	timer, err := strconv.Atoi(parts[1])
+	timer, err := strconv.Atoi(parts[2])
 	if err != nil {
-		b.Session.ChannelMessageSend(b.Message.ChannelID, fmt.Sprintf("Unable to decode timer: %+v", parts[1]))
+		b.Session.ChannelMessageSend(b.Message.ChannelID, fmt.Sprintf("Unable to decode timer: %+v", parts[2]))
 		return false
 	}
 	config.BumpTime = time.Now().Add(time.Duration(timer) * time.Minute).Add(-2 * time.Hour)