From 51e0fefda76f96c2b57eb2a6732697258d8a6931 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Sat, 26 Oct 2024 11:32:36 +0200 Subject: [PATCH] Fix order of commands --- src/command/AllCommands.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx index af339261a..cfc4c29c1 100644 --- a/src/command/AllCommands.cxx +++ b/src/command/AllCommands.cxx @@ -190,8 +190,8 @@ static constexpr struct command commands[] = { #ifdef ENABLE_SQLITE { "sticker", PERMISSION_ADMIN, 3, -1, handle_sticker }, { "stickernames", PERMISSION_ADMIN, 0, 0, handle_sticker_names }, - { "stickertypes", PERMISSION_ADMIN, 0, 0, handle_sticker_types }, { "stickernamestypes", PERMISSION_ADMIN, 0, 1, handle_sticker_names_types }, + { "stickertypes", PERMISSION_ADMIN, 0, 0, handle_sticker_types }, #endif { "stop", PERMISSION_PLAYER, 0, 0, handle_stop }, { "subscribe", PERMISSION_READ, 1, 1, handle_subscribe },