Skip to content

Commit

Permalink
Replace Fandom links with new wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Earthcomputer committed Sep 26, 2023
1 parent 7946be0 commit 790a238
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/spongepowered/api/MinecraftVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public interface MinecraftVersion extends Comparable<MinecraftVersion> {
* @implNote This should be interpreted together with {@link #isLegacy()},
* since legacy clients use a different protocol version numbering scheme.
* @return The protocol version
* @see <a href="https://minecraft.fandom.com/wiki/Protocol_version">Protocol version (Minecraft Wiki)</a>
* @see <a href="https://minecraft.wiki/w/Protocol_version">Protocol version (Minecraft Wiki)</a>
*/
int protocolVersion();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ interface Version extends MinecraftVersion {
* incompatible or not, forcing it to display the {@link #name()}.
*
* @param protocolVersion The new server protocol version
* @see <a href="https://minecraft.fandom.com/wiki/Protocol_version">Protocol version (Minecraft Wiki)</a>
* @see <a href="https://minecraft.wiki/w/Protocol_version">Protocol version (Minecraft Wiki)</a>
*/
void setProtocolVersion(int protocolVersion);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ public final class DefaultWorldKeys {
/**
* The default "world" of a running game session. Typically, the Overworld.
* <p>
* Refer to: <a href="https://minecraft.fandom.com/wiki/Overworld">Overworld</a>
* Refer to: <a href="https://minecraft.wiki/w/Overworld">Overworld</a>
*/
public static final ResourceKey DEFAULT = Sponge.game().factoryProvider().provide(DefaultWorldKeys.Factory.class).defaultWorld();

/**
* Refer to: <a href="https://minecraft.fandom.com/wiki/The_Nether">The Nether</a>
* Refer to: <a href="https://minecraft.wiki/w/The_Nether">The Nether</a>
*/
public static final ResourceKey THE_NETHER = Sponge.game().factoryProvider().provide(DefaultWorldKeys.Factory.class).theNether();

/**
* Refer to: <a href="https://minecraft.fandom.com/wiki/The_End">The End</a>
* Refer to: <a href="https://minecraft.wiki/w/The_End">The End</a>
*/
public static final ResourceKey THE_END = Sponge.game().factoryProvider().provide(DefaultWorldKeys.Factory.class).theEnd();

Expand Down

0 comments on commit 790a238

Please sign in to comment.