mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-02 14:38:26 +01:00
Update Minecraft Wiki links to new domain
(cherry picked from commit 478eba12fb
)
This commit is contained in:
parent
36ac2b5eb4
commit
e9e58e4fce
2
.github/README.md
vendored
2
.github/README.md
vendored
@ -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 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
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -19,7 +19,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> {
|
||||
|
||||
|
@ -995,7 +995,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;
|
||||
|
@ -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();
|
||||
|
@ -114,7 +114,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
|
||||
|
@ -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_-]+";
|
||||
|
@ -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 {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user