From 3f3f947f43962f8e3555e793eb4c6db9c56ac8fb Mon Sep 17 00:00:00 2001 From: CrazyDev22 Date: Fri, 22 Dec 2023 16:17:56 +0100 Subject: [PATCH] change the Param description --- .../com/volmit/iris/core/commands/CommandDeveloper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/volmit/iris/core/commands/CommandDeveloper.java b/core/src/main/java/com/volmit/iris/core/commands/CommandDeveloper.java index 54450af8d..85e6f1644 100644 --- a/core/src/main/java/com/volmit/iris/core/commands/CommandDeveloper.java +++ b/core/src/main/java/com/volmit/iris/core/commands/CommandDeveloper.java @@ -85,9 +85,9 @@ public class CommandDeveloper implements DecreeExecutor { @Decree(description = "Test the compression algorithms") public void compression( - @Param(description = "World") World world, - @Param(description = "File") String path, - @Param(description = "Algorithm") String algorithm, + @Param(description = "base IrisWorld") World world, + @Param(description = "raw TectonicPlate File") String path, + @Param(description = "Algorithm to Test") String algorithm, @Param(description = "Amount of Tests") int amount) { if (!IrisToolbelt.isIrisWorld(world)) { sender().sendMessage(C.RED + "This is not an Iris world. Iris worlds: " + String.join(", ", Bukkit.getServer().getWorlds().stream().filter(IrisToolbelt::isIrisWorld).map(World::getName).toList()));