Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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