updated source code comments to use the new minecraft wiki (#261)

Co-authored-by: Nitzsche, Samuel (SE-A/33) <samuel.nitzsche@volkswagen.de>
This commit is contained in:
Samuel Nitzsche
2024-11-13 21:33:35 +01:00
committed by GitHub
parent 060274bd48
commit 59aa53a56a
2 changed files with 2 additions and 2 deletions

View File

@@ -184,6 +184,6 @@ pub enum TextContent<'a> {
separator: Option<Cow<'a, str>>,
},
/// A keybind identifier
/// https://minecraft.fandom.com/wiki/Controls#Configurable_controls
/// https://minecraft.wiki/w/Controls#Configurable_controls
Keybind { keybind: Cow<'a, str> },
}

View File

@@ -65,7 +65,7 @@ pub struct ChunkBlocks {
/// Ordering: yzx (y being the most significant)
blocks: Box<[u16; CHUNK_VOLUME]>,
/// See `https://minecraft.fandom.com/wiki/Heightmap` for more info
/// See `https://minecraft.wiki/w/Heightmap` for more info
pub heightmap: ChunkHeightmaps,
}