Skip to content

Commit

Permalink
Update Minecraft Wiki links to new domain (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spongecade authored Sep 28, 2023
1 parent eff6cf9 commit 6be1b82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/packsquash/src/pack_file/command_function_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ mod tests;
/// to read these files.
///
/// References:
/// - <https://minecraft.fandom.com/wiki/Function_(Java_Edition)>
/// - <https://minecraft.wiki/w/Function_(Java_Edition)>
/// - Minecraft class `net.minecraft.commands.CommandFunction`
pub struct CommandFunctionFile<T: AsyncRead + Send + Unpin + 'static> {
read: T,
Expand Down
2 changes: 1 addition & 1 deletion packages/packsquash/src/pack_file/legacy_lang_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static FORMAT_SPECIFIER_REGEX: LazyLock<Regex> = LazyLock::new(|| {
/// files in Minecraft 1.13. Only Minecraft 1.12 and older versions use this type of files.
///
/// References:
/// - <https://minecraft.fandom.com/wiki/Resource_Pack?oldid=1257552#Language>
/// - <https://minecraft.wiki/w/Resource_Pack?oldid=1257552#Language>
/// - Minecraft class `net.minecraft.client.resources.Locale` (MCP 1.12.2 name)
/// - OpenJDK 11 implementation of class `java.util.Formatter`
pub struct LegacyLanguageFile<T: AsyncRead + Send + Unpin + 'static> {
Expand Down
4 changes: 2 additions & 2 deletions packages/packsquash/src/pack_meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ pub const PACK_FORMAT_VERSION_1_17: i32 = 7;
/// `pack.mcmetac` file in the root folder of a pack.
///
/// References:
/// - <https://minecraft.fandom.com/wiki/Resource_Pack#Contents>
/// - <https://minecraft.fandom.com/wiki/Data_Pack#pack.mcmeta>
/// - <https://minecraft.wiki/w/Resource_Pack#Contents>
/// - <https://minecraft.wiki/w/Data_Pack#pack.mcmeta>
/// - Minecraft class `net.minecraft.server.packs.metadata.pack.PackMetadataSectionSerializer`
pub struct PackMeta {
pack_format_version: i32
Expand Down

0 comments on commit 6be1b82

Please sign in to comment.