From 8bd79af4dcc6fba0d1f38f7b9af68f9c9e226eaf Mon Sep 17 00:00:00 2001 From: Spongecade Date: Fri, 6 Oct 2023 08:26:42 -0500 Subject: [PATCH] Update Minecraft wiki links to new domain --- .../ctjs/api/commands/DynamicCommands.kt | 74 +++++++++---------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/src/main/kotlin/com/chattriggers/ctjs/api/commands/DynamicCommands.kt b/src/main/kotlin/com/chattriggers/ctjs/api/commands/DynamicCommands.kt index c164aaab..e9a07934 100644 --- a/src/main/kotlin/com/chattriggers/ctjs/api/commands/DynamicCommands.kt +++ b/src/main/kotlin/com/chattriggers/ctjs/api/commands/DynamicCommands.kt @@ -219,13 +219,13 @@ object DynamicCommands : CommandCollection() { ///////////////////////// /** - * @see Argument Types: bool + * @see Argument Types: bool */ @JvmStatic fun bool(): BoolArgumentType = BoolArgumentType.bool() /** - * @see brigadier:double + * @see brigadier:double */ @JvmStatic @JvmOverloads @@ -233,7 +233,7 @@ object DynamicCommands : CommandCollection() { DoubleArgumentType.doubleArg(min, max) /** - * @see brigadier:float + * @see brigadier:float */ @JvmStatic @JvmOverloads @@ -241,7 +241,7 @@ object DynamicCommands : CommandCollection() { FloatArgumentType.floatArg(min, max) /** - * @see brigadier:integer + * @see brigadier:integer */ @JvmStatic @JvmOverloads @@ -249,7 +249,7 @@ object DynamicCommands : CommandCollection() { IntegerArgumentType.integer(min, max) /** - * @see brigadier:long + * @see brigadier:long */ @JvmStatic @JvmOverloads @@ -257,19 +257,19 @@ object DynamicCommands : CommandCollection() { LongArgumentType.longArg(min, max) /** - * @see brigadier:string + * @see brigadier:string */ @JvmStatic fun string(): StringArgumentType = StringArgumentType.string() /** - * @see brigadier:string + * @see brigadier:string */ @JvmStatic fun greedyString(): StringArgumentType = StringArgumentType.greedyString() /** - * @see brigadier:string + * @see brigadier:string */ @JvmStatic fun word(): StringArgumentType = StringArgumentType.word() @@ -279,13 +279,13 @@ object DynamicCommands : CommandCollection() { ////////////////// /** - * @see minecraft:angle + * @see minecraft:angle */ @JvmStatic fun angle() = wrapArgument(AngleArgumentType.angle(), ::AngleArgumentWrapper) /** - * @see minecraft:block_pos + * @see minecraft:block_pos */ @JvmStatic fun blockPos(): ArgumentType { @@ -293,7 +293,7 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:block_predicate + * @see minecraft:block_predicate */ @JvmStatic fun blockPredicate(): ArgumentType { @@ -303,7 +303,7 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:block_state + * @see minecraft:block_state */ @JvmStatic fun blockState(): ArgumentType { @@ -313,19 +313,19 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:color + * @see minecraft:color */ @JvmStatic fun color() = ColorArgumentType.color() /** - * @see minecraft:column_pos + * @see minecraft:column_pos */ @JvmStatic fun columnPos() = wrapArgument(ColumnPosArgumentType.columnPos(), ::PosArgumentWrapper) /** - * @see minecraft:dimension + * @see minecraft:dimension */ @JvmStatic fun dimension() = wrapArgument( @@ -340,31 +340,31 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:entity + * @see minecraft:entity */ @JvmStatic fun entity() = wrapArgument(EntityArgumentType.entity()) { EntitySelectorWrapper(it).getEntity() } /** - * @see minecraft:entity + * @see minecraft:entity */ @JvmStatic fun entities() = wrapArgument(EntityArgumentType.entities()) { EntitySelectorWrapper(it).getEntities() } /** - * @see minecraft:float_range + * @see minecraft:float_range */ @JvmStatic fun floatRange() = NumberRangeArgumentType.floatRange() /** - * @see minecraft:game_profile + * @see minecraft:game_profile */ @JvmStatic fun gameProfile() = players() /** - * @see minecraft:game_profile + * @see minecraft:game_profile */ @JvmStatic fun player() = wrapArgument(EntityArgumentType.player()) { @@ -378,25 +378,25 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:game_profile + * @see minecraft:game_profile */ @JvmStatic fun players() = wrapArgument(EntityArgumentType.players()) { EntitySelectorWrapper(it).getPlayers() } /** - * @see minecraft:gamemode + * @see minecraft:gamemode */ @JvmStatic fun gameMode() = GameModeArgumentType.gameMode() /** - * @see minecraft:int_range + * @see minecraft:int_range */ @JvmStatic fun intRange() = NumberRangeArgumentType.intRange() /** - * @see minecraft:item_predicate + * @see minecraft:item_predicate */ @JvmStatic fun itemPredicate(): ArgumentType<(Item) -> Boolean> { @@ -406,13 +406,13 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:item_slot + * @see minecraft:item_slot */ @JvmStatic fun itemSlot() = ItemSlotArgumentType.itemSlot() /** - * @see minecraft:item_stack + * @see minecraft:item_stack */ @JvmStatic fun itemStack(): ArgumentType { @@ -422,62 +422,62 @@ object DynamicCommands : CommandCollection() { } /** - * @see minecraft:message + * @see minecraft:message */ @JvmStatic fun message() = wrapArgument(MessageArgumentType.message(), ::MessageFormatArgumentWrapper) /** - * @see minecraft:nbt_compound_tag + * @see minecraft:nbt_compound_tag */ @JvmStatic fun nbtCompoundTag() = wrapArgument(NbtCompoundArgumentType.nbtCompound(), ::NBTTagCompound) /** - * @see minecraft:nbt_path + * @see minecraft:nbt_path */ @JvmStatic fun nbtPath() = wrapArgument(NbtPathArgumentType.nbtPath(), ::NbtPathWrapper) /** - * @see minecraft:nbt_tag + * @see minecraft:nbt_tag */ @JvmStatic fun nbtTag() = wrapArgument(NbtElementArgumentType.nbtElement(), NBTBase::fromMC) /** - * @see minecraft:resource + * @see minecraft:resource */ @JvmStatic fun resource() = IdentifierArgumentType.identifier() /** - * @see minecraft:rotation + * @see minecraft:rotation */ @JvmStatic fun rotation() = wrapArgument(RotationArgumentType.rotation(), ::PosArgumentWrapper) /** - * @see minecraft:swizzle + * @see minecraft:swizzle */ @JvmStatic fun swizzle() = wrapArgument(SwizzleArgumentType.swizzle()) { it.map(BlockFace.Axis::fromMC) } /** - * @see minecraft:time + * @see minecraft:time */ @JvmStatic @JvmOverloads fun time(minimum: Int = 0) = TimeArgumentType.time(minimum) /** - * @see minecraft:uuid + * @see minecraft:uuid */ @JvmStatic fun uuid() = UuidArgumentType.uuid() /** - * @see minecraft:vec2 + * @see minecraft:vec2 */ @JvmStatic @JvmOverloads @@ -485,7 +485,7 @@ object DynamicCommands : CommandCollection() { wrapArgument(Vec2ArgumentType.vec2(centerIntegers), ::PosArgumentWrapper) /** - * @see minecraft:vec3 + * @see minecraft:vec3 */ @JvmStatic @JvmOverloads