Update Minecraft Wiki links to new domain

(cherry picked from commit 478eba12fb)
This commit is contained in:
Spongecade 2023-09-27 22:55:43 +00:00 committed by mworzala
parent 36ac2b5eb4
commit e9e58e4fce
No known key found for this signature in database
GPG Key ID: B148F922E64797C7
8 changed files with 8 additions and 8 deletions

2
.github/README.md vendored
View File

@ -101,7 +101,7 @@ Commands are the simplest way of communication between clients and server. Since
* The [contributors](https://github.com/Minestom/Minestom/graphs/contributors) of the project * The [contributors](https://github.com/Minestom/Minestom/graphs/contributors) of the project
* [The Minecraft Coalition](https://wiki.vg/) and [`#mcdevs`](https://github.com/mcdevs) - * [The Minecraft Coalition](https://wiki.vg/) and [`#mcdevs`](https://github.com/mcdevs) -
protocol and file formats research. protocol and file formats research.
* [The Minecraft Wiki](https://minecraft.gamepedia.com/Minecraft_Wiki) for all their useful info * [The Minecraft Wiki](https://minecraft.wiki) for all their useful info
* [JProfiler](https://www.ej-technologies.com/products/jprofiler/overview.html) for their amazing Java profiler * [JProfiler](https://www.ej-technologies.com/products/jprofiler/overview.html) for their amazing Java profiler
# Contributing # Contributing

View File

@ -20,7 +20,7 @@ import java.util.Locale;
* Command that make a player change gamemode, made in * Command that make a player change gamemode, made in
* the style of the vanilla /gamemode command. * the style of the vanilla /gamemode command.
* *
* @see <a href="https://minecraft.fandom.com/wiki/Commands/gamemode">...</a> * @see <a href="https://minecraft.wiki/w/Commands/gamemode">...</a>
*/ */
public class GamemodeCommand extends Command { public class GamemodeCommand extends Command {

View File

@ -19,7 +19,7 @@ import java.util.regex.Pattern;
/** /**
* Represents the target selector argument. * Represents the target selector argument.
* https://minecraft.gamepedia.com/Commands#Target_selectors * https://minecraft.wiki/w/Target_selectors
*/ */
public class ArgumentEntity extends Argument<EntityFinder> { public class ArgumentEntity extends Argument<EntityFinder> {

View File

@ -995,7 +995,7 @@ public class Entity implements Viewable, Tickable, Schedulable, Snapshotable, Ev
* *
* @param gravityDragPerTick the gravity drag per tick in block * @param gravityDragPerTick the gravity drag per tick in block
* @param gravityAcceleration the gravity acceleration in block * @param gravityAcceleration the gravity acceleration in block
* @see <a href="https://minecraft.gamepedia.com/Entity#Motion_of_entities">Entities motion</a> * @see <a href="https://minecraft.wiki/w/Entity#Motion_of_entities">Entities motion</a>
*/ */
public void setGravity(double gravityDragPerTick, double gravityAcceleration) { public void setGravity(double gravityDragPerTick, double gravityAcceleration) {
this.gravityDragPerTick = gravityDragPerTick; this.gravityDragPerTick = gravityDragPerTick;

View File

@ -67,7 +67,7 @@ public interface BlockHandler {
* Specifies which block entity tags should be sent to the player. * Specifies which block entity tags should be sent to the player.
* *
* @return The list of tags from this block's block entity that should be sent to the player * @return The list of tags from this block's block entity that should be sent to the player
* @see <a href="https://minecraft.fandom.com/wiki/Block_entity">Block entity on Minecraft fandom wiki</a> * @see <a href="https://minecraft.wiki/w/Block_entity">Block entity on the Minecraft wiki</a>
*/ */
default @NotNull Collection<Tag<?>> getBlockEntityTags() { default @NotNull Collection<Tag<?>> getBlockEntityTags() {
return List.of(); return List.of();

View File

@ -114,7 +114,7 @@ public enum MapColors {
this.blue = blue; this.blue = blue;
} }
// From the wiki: https://minecraft.gamepedia.com/Map_item_format // From the wiki: https://minecraft.wiki/w/Map_item_format
// Map Color ID Multiply R,G,B By = Multiplier // Map Color ID Multiply R,G,B By = Multiplier
//Base Color ID*4 + 0 180 0.71 //Base Color ID*4 + 0 180 0.71
//Base Color ID*4 + 1 220 0.86 //Base Color ID*4 + 1 220 0.86

View File

@ -10,7 +10,7 @@ import java.util.Objects;
/** /**
* Represents a namespaced ID * Represents a namespaced ID
* https://minecraft.gamepedia.com/Namespaced_ID * https://minecraft.wiki/w/Namespaced_ID
*/ */
public final class NamespaceID implements CharSequence, Key { public final class NamespaceID implements CharSequence, Key {
private static final String legalLetters = "[0123456789abcdefghijklmnopqrstuvwxyz_-]+"; private static final String legalLetters = "[0123456789abcdefghijklmnopqrstuvwxyz_-]+";

View File

@ -12,7 +12,7 @@ import java.util.Objects;
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicInteger;
/** /**
* https://minecraft.gamepedia.com/Custom_dimension * https://minecraft.wiki/w/Custom_dimension
*/ */
public class DimensionType { public class DimensionType {