Update Minecraft Wiki links to new domain (#4151)

This commit is contained in:
Spongecade 2023-09-27 09:55:54 -05:00 committed by GitHub
parent ae983779ba
commit 5276a1e2ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -31,7 +31,7 @@ import java.util.Locale;
/** /**
* Potion identifiers and their respective Bedrock IDs used with arrows. * Potion identifiers and their respective Bedrock IDs used with arrows.
* https://minecraft.gamepedia.com/Arrow#Item_Data * https://minecraft.wiki/w/Arrow#Data_values
*/ */
@Getter @Getter
public enum TippedArrowPotion { public enum TippedArrowPotion {

View file

@ -76,7 +76,7 @@ public class MinecraftLocale {
public static void downloadAndLoadLocale(String locale) { public static void downloadAndLoadLocale(String locale) {
locale = locale.toLowerCase(Locale.ROOT); locale = locale.toLowerCase(Locale.ROOT);
if (locale.equals("nb_no")) { if (locale.equals("nb_no")) {
// Different locale code - https://minecraft.fandom.com/wiki/Language // Different locale code - https://minecraft.wiki/w/Language
locale = "no_no"; locale = "no_no";
} }

View file

@ -120,7 +120,7 @@ public class JavaEntityEventTranslator extends PacketTranslator<ClientboundEntit
if (fishingHook.getBedrockTargetId() == session.getPlayerEntity().getGeyserId()) { if (fishingHook.getBedrockTargetId() == session.getPlayerEntity().getGeyserId()) {
Entity hookOwner = session.getEntityCache().getEntityByGeyserId(fishingHook.getBedrockOwnerId()); Entity hookOwner = session.getEntityCache().getEntityByGeyserId(fishingHook.getBedrockOwnerId());
if (hookOwner != null) { if (hookOwner != null) {
// https://minecraft.gamepedia.com/Fishing_Rod#Hooking_mobs_and_other_entities // https://minecraft.wiki/w/Fishing_Rod#Hooking_mobs_and_other_entities
SetEntityMotionPacket motionPacket = new SetEntityMotionPacket(); SetEntityMotionPacket motionPacket = new SetEntityMotionPacket();
motionPacket.setRuntimeEntityId(session.getPlayerEntity().getGeyserId()); motionPacket.setRuntimeEntityId(session.getPlayerEntity().getGeyserId());
motionPacket.setMotion(hookOwner.getPosition().sub(session.getPlayerEntity().getPosition()).mul(0.1f)); motionPacket.setMotion(hookOwner.getPosition().sub(session.getPlayerEntity().getPosition()).mul(0.1f));

View file

@ -40,7 +40,7 @@ public class JavaSetTimeTranslator extends PacketTranslator<ClientboundSetTimePa
// Java just sends a negative long if there is no daylight cycle // Java just sends a negative long if there is no daylight cycle
long time = packet.getTime(); long time = packet.getTime();
// https://minecraft.gamepedia.com/Day-night_cycle#24-hour_Minecraft_day // https://minecraft.wiki/w/Day-night_cycle#24-hour_Minecraft_day
SetTimePacket setTimePacket = new SetTimePacket(); SetTimePacket setTimePacket = new SetTimePacket();
// We use modulus to prevent an integer overflow // We use modulus to prevent an integer overflow
// 24000 is the range of ticks that a Minecraft day can be; we times by 8 so all moon phases are visible // 24000 is the range of ticks that a Minecraft day can be; we times by 8 so all moon phases are visible

View file

@ -32,7 +32,7 @@ import com.github.steveice10.mc.protocol.data.game.entity.attribute.ModifierOper
public class AttributeUtils { public class AttributeUtils {
/** /**
* Retrieve the base attribute value with all modifiers applied. * Retrieve the base attribute value with all modifiers applied.
* https://minecraft.gamepedia.com/Attribute#Modifiers * https://minecraft.wiki/w/Attribute#Modifiers
* @param attribute The attribute to calculate the total value. * @param attribute The attribute to calculate the total value.
* @return The finished attribute with all modifiers applied. * @return The finished attribute with all modifiers applied.
*/ */

View file

@ -64,7 +64,7 @@ public final class BlockUtils {
if (toolType.equals("shears")) return isShearsEffective ? 5.0 : 15.0; if (toolType.equals("shears")) return isShearsEffective ? 5.0 : 15.0;
if (toolType.equals("")) return 1.0; if (toolType.equals("")) return 1.0;
return switch (toolTier) { return switch (toolTier) {
// https://minecraft.gamepedia.com/Breaking#Speed // https://minecraft.wiki/w/Breaking#Speed
case "wooden" -> 2.0; case "wooden" -> 2.0;
case "stone" -> 4.0; case "stone" -> 4.0;
case "iron" -> 6.0; case "iron" -> 6.0;
@ -100,7 +100,7 @@ public final class BlockUtils {
return true; return true;
} }
// https://minecraft.gamepedia.com/Breaking // https://minecraft.wiki/w/Breaking
private static double calculateBreakTime(double blockHardness, String toolTier, boolean canHarvestWithHand, boolean correctTool, boolean canTierMineBlock, private static double calculateBreakTime(double blockHardness, String toolTier, boolean canHarvestWithHand, boolean correctTool, boolean canTierMineBlock,
String toolType, boolean isShearsEffective, int toolEfficiencyLevel, int hasteLevel, int miningFatigueLevel, String toolType, boolean isShearsEffective, int toolEfficiencyLevel, int hasteLevel, int miningFatigueLevel,
boolean insideOfWaterWithoutAquaAffinity, boolean onGround) { boolean insideOfWaterWithoutAquaAffinity, boolean onGround) {