Update Minecraft Wiki links to new domain

This commit is contained in:
Spongecade 2023-09-27 22:55:43 +00:00
parent 2cdb3911b0
commit 478eba12fb
8 changed files with 8 additions and 8 deletions

2
.github/README.md vendored
View File

@ -93,7 +93,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 Minecraft Coalition](https://wiki.vg/) and [`#mcdevs`](https://github.com/mcdevs) -
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
# Contributing

View File

@ -20,7 +20,7 @@ import java.util.Locale;
* Command that make a player change gamemode, made in
* 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 {

View File

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

View File

@ -979,7 +979,7 @@ public class Entity implements Viewable, Tickable, Schedulable, Snapshotable, Ev
*
* @param gravityDragPerTick the gravity drag per tick 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) {
this.gravityDragPerTick = gravityDragPerTick;

View File

@ -67,7 +67,7 @@ public interface BlockHandler {
* 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
* @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() {
return List.of();

View File

@ -120,7 +120,7 @@ public enum MapColors {
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
//Base Color ID*4 + 0 180 0.71
//Base Color ID*4 + 1 220 0.86

View File

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

View File

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