From 81f0970e3659be6ae761746834128a70bad582b4 Mon Sep 17 00:00:00 2001 From: Watn3y Date: Sun, 19 Mar 2023 22:39:14 +0100 Subject: [PATCH] fix subtract gaypoints --- commands/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/commands.go b/commands/commands.go index a29318e..f6797db 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -24,7 +24,7 @@ func Commands(update tgbotapi.Update, bot *tgbotapi.BotAPI) { gaypoints.GetGP(update, bot) case "addgp": gaypoints.SetGP(update, bot) - case "subtracktgp": + case "subtractgp": gaypoints.SetGP(update, bot) } }