This commit is contained in:
rockyhawk64 2025-07-26 23:46:55 +10:00
parent 5402717dd0
commit 896ab8b15c
3 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
version: 4.0.3
version: 4.0.4
main: me.rockyhawk.commandpanels.CommandPanels
name: CommandPanels
author: RockyHawk

View File

@ -44,6 +44,7 @@ public class TabComplete implements TabCompleter {
if (sender.hasPermission("commandpanels.command.data")) {
output.add("data");
}
// REMOVE AFTER CONVERTER IS REMOVED
if (sender.hasPermission("commandpanels.command.convert")) {
output.add("convert");
}

View File

@ -52,6 +52,12 @@ public class HelpCommand implements SubCommand {
.append(Component.text("Shows this help menu", NamedTextColor.WHITE)));
}
// REMOVE AFTER CONVERTER IS REMOVED
if (sender.hasPermission("commandpanels.command.convert")) {
sender.sendMessage(Component.text("/pa convert ", NamedTextColor.GOLD)
.append(Component.text("Converts basic layout from v3 to v4 panels (not plug and play)", NamedTextColor.WHITE)));
}
return true;
}
}