fixed command argument order

This commit is contained in:
2024-12-06 19:18:56 +01:00
parent af34d7d3df
commit d5681bbb8d
@@ -256,7 +256,6 @@ public class BlockEditCommands {
player.sendMessage(Component.text(BELocale.getLocale(player.locale()).settingBlocks, NamedTextColor.GRAY));
return Command.SINGLE_SUCCESS;
})
)
.then(
Commands.argument("chunks_per_tick", IntegerArgumentType.integer(1))
.executes(ctx -> {
@@ -269,6 +268,8 @@ public class BlockEditCommands {
player.sendMessage(Component.text(BELocale.getLocale(player.locale()).settingBlocks, NamedTextColor.GRAY));
return Command.SINGLE_SUCCESS;
}))
)
.build();
}
@@ -293,7 +294,6 @@ public class BlockEditCommands {
player.sendMessage(Component.text(BELocale.getLocale(player.locale()).replacingBlocks, NamedTextColor.GRAY));
return Command.SINGLE_SUCCESS;
})
)
.then(
Commands.argument("chunks_per_tick", IntegerArgumentType.integer(1))
.executes(ctx -> {
@@ -308,6 +308,7 @@ public class BlockEditCommands {
return Command.SINGLE_SUCCESS;
})
)
)
.build();
}