From dcda0d6f5674c7b81c7f5bed522eef6fb626a852 Mon Sep 17 00:00:00 2001 From: Alexander Medvedev Date: Sun, 8 Feb 2026 13:32:19 +0100 Subject: [PATCH] add /pl as a shortcut for /plugins won the poll on discord fixes https://github.com/Pumpkin-MC/Pumpkin/issues/1277 --- pumpkin/src/command/commands/plugins.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pumpkin/src/command/commands/plugins.rs b/pumpkin/src/command/commands/plugins.rs index 2797d7dc7..e1d67b518 100644 --- a/pumpkin/src/command/commands/plugins.rs +++ b/pumpkin/src/command/commands/plugins.rs @@ -4,7 +4,7 @@ use crate::command::{ CommandExecutor, CommandResult, CommandSender, args::ConsumedArgs, tree::CommandTree, }; -const NAMES: [&str; 1] = ["plugins"]; +const NAMES: [&str; 2] = ["pl", "plugins"]; const DESCRIPTION: &str = "List all available plugins.";