diff --git a/commands/gaypoints/gaypoints.go b/commands/gaypoints/gaypoints.go index 42243ae..53de4ab 100644 --- a/commands/gaypoints/gaypoints.go +++ b/commands/gaypoints/gaypoints.go @@ -70,16 +70,14 @@ func SetGP(update tgbotapi.Update, bot *tgbotapi.BotAPI) { } if !commonlogic.ContainsInt64(config.BotConfig.GayPoints.ModifyUsers, update.Message.From.ID) { - if update.Message.ReplyToMessage == nil { - message := tgbotapi.MessageConfig{ - BaseChat: tgbotapi.BaseChat{ChatID: update.Message.Chat.ID, ReplyToMessageID: update.Message.MessageID}, - ParseMode: "html", - DisableWebPagePreview: false, - Text: "Who the fuck do you think you are telling me what to do?", - } - botIO.SendMessage(message, bot) - return + message := tgbotapi.MessageConfig{ + BaseChat: tgbotapi.BaseChat{ChatID: update.Message.Chat.ID, ReplyToMessageID: update.Message.MessageID}, + ParseMode: "html", + DisableWebPagePreview: false, + Text: "Who the fuck do you think you are telling me what to do?", } + botIO.SendMessage(message, bot) + return } cmd := strings.ToLower(update.Message.Command())