#"Unknown or incomplete command, see below for error"
1 messages · Page 1 of 1 (latest)
before the .execute in register there is one too many ), you need to move it after the .execute
i dont get it 😅
in register there is
.then(CommandManager.argument(Arg2, BoolArgumentType.bool())).executes(CopyCoordinate::Run)));
you need to move the ) before the .execute to after it so
.then(CommandManager.argument(Arg2, BoolArgumentType.bool()).executes(CopyCoordinate::Run))));