From b0895f48d95260d89771e876c2085050cfe50487 Mon Sep 17 00:00:00 2001 From: Gag91 Date: Mon, 10 Aug 2026 16:42:07 +0300 Subject: [PATCH] Modified std::list to std::vector --- src/commands/commands.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/commands.h b/src/commands/commands.h index edfc965..7eb7634 100644 --- a/src/commands/commands.h +++ b/src/commands/commands.h @@ -91,7 +91,7 @@ struct cmdStruct typedef std::function cmdFunc; cmdFunc function; - std::list args; + std::vector args; dpp::permissions permissions; };