chore/quickwin-fix #11

Merged
NotEvil merged 3 commits from chore/quickwin-fix into develop 2026-04-15 09:22:09 +00:00
Showing only changes of commit 317dcdf12e - Show all commits

View File

@@ -19,6 +19,17 @@ import net.minecraft.world.item.ItemStack;
public class BindCommands {
public static void register(LiteralArgumentBuilder<CommandSourceStack> root) {
// /tiedup tie <player>
root.then(
Commands.literal("tie")
.requires(CommandHelper.REQUIRES_OP)
.then(
Commands.argument(
"player",
EntityArgument.player()
).executes(BindCommands::tie)
)
);
// /tiedup untie <player>
root.then(
Commands.literal("untie")