From 25ad664a36d72deac08bc744d23f6be37a111314 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 16 Jun 2024 11:37:13 +0100 Subject: [PATCH] docs: Update version matrix in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 03bf05e..0230278 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ Uniform _currently_ targets the following platforms: | Platform | Artifact | Minecraft | Java | |---------------|--------------------|:----------:|:------:| | Common | `uniform-common` | - | \>`17` | +| Bukkit | `uniform-bukkit` | \>`1.17.1` | \>`17` | | Paper | `uniform-paper` | \>`1.17.1` | \>`21` | | Velocity | `uniform-velocity` | \>`3.3.0` | \>`17` | | Fabric 1.20.1 | `uniform-fabric` | =`1.20.1` | \>`17` | | Fabric 1.20.6 | `uniform-fabric` | =`1.20.6` | \>`21` | -| Bukkit | `uniform-bukkit` | \>`1.17.1` | \>`17` |

@@ -100,7 +100,7 @@ public class ExampleCrossPlatCommand extends Command { final Audience user = command.getUser(context.getSource()).getAudience(); user.sendMessage(Component.text("Hello, world!")); }); - + // Add syntax to the command command.addSyntax((context) -> { final Audience user = command.getUser(ctx.getSource()).getAudience(); @@ -108,7 +108,7 @@ public class ExampleCrossPlatCommand extends Command { String arg = context.getArgument("message", String.class); user.sendMessage(MiniMessage.miniMessage().deserialize(arg)); }, stringArg("message")); - + // Sub-commands, too command.addSubCommand("subcommand", (sub) -> { sub.setDefaultExecutor((context) -> {