mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
[skip ci] Update Minecraft wiki links to new domain (#2593)
This commit is contained in:
parent
911908bfaf
commit
c3fa413b4e
8 changed files with 11 additions and 11 deletions
|
|
@ -114,7 +114,7 @@ namespace MinecraftClient
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Write a Minecraft-Like formatted string to the standard output, using §c color codes
|
/// Write a Minecraft-Like formatted string to the standard output, using §c color codes
|
||||||
/// See minecraft.gamepedia.com/Classic_server_protocol#Color_Codes for more info
|
/// <see href="https://minecraft.wiki/w/Classic_server_protocol#Color_codes"/> for more info
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="str">String to write</param>
|
/// <param name="str">String to write</param>
|
||||||
/// <param name="acceptnewlines">If false, space are printed instead of newlines</param>
|
/// <param name="acceptnewlines">If false, space are printed instead of newlines</param>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a unit movement in the world
|
/// Represents a unit movement in the world
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
|
/// <see href="https://minecraft.wiki/w/Coordinates"/>
|
||||||
public enum CommandBlockFlags
|
public enum CommandBlockFlags
|
||||||
{
|
{
|
||||||
TrackOutput = 0x01,
|
TrackOutput = 0x01,
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a unit movement in the world
|
/// Represents a unit movement in the world
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
|
/// <see href="https://minecraft.wiki/w/Coordinates"/>
|
||||||
public enum CommandBlockMode
|
public enum CommandBlockMode
|
||||||
{
|
{
|
||||||
Sequence = 0,
|
Sequence = 0,
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a unit movement in the world
|
/// Represents a unit movement in the world
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <see href="http://minecraft.gamepedia.com/Coordinates"/>
|
/// <see href="https://minecraft.wiki/w/Coordinates"/>
|
||||||
public enum Direction
|
public enum Direction
|
||||||
{
|
{
|
||||||
South = 0,
|
South = 0,
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ namespace MinecraftClient.Mapping
|
||||||
{
|
{
|
||||||
public static class Material2Tool
|
public static class Material2Tool
|
||||||
{
|
{
|
||||||
// Made with the following ressources: https://minecraft.fandom.com/wiki/Breaking
|
// Made with the following ressources: https://minecraft.wiki/w/Breaking
|
||||||
// Sorted in alphabetical order.
|
// Sorted in alphabetical order.
|
||||||
// Minable by Any Pickaxe.
|
// Minable by Any Pickaxe.
|
||||||
private static readonly List<Material> pickaxeTier0 = new()
|
private static readonly List<Material> pickaxeTier0 = new()
|
||||||
|
|
|
||||||
|
|
@ -2575,15 +2575,15 @@ namespace MinecraftClient
|
||||||
switch (newSpeed)
|
switch (newSpeed)
|
||||||
{
|
{
|
||||||
case MovementType.Sneak:
|
case MovementType.Sneak:
|
||||||
// https://minecraft.fandom.com/wiki/Sneaking#Effects - Sneaking 1.31m/s
|
// https://minecraft.wiki/w/Sneaking#Effects - Sneaking 1.31m/s
|
||||||
Config.Main.Advanced.MovementSpeed = 2;
|
Config.Main.Advanced.MovementSpeed = 2;
|
||||||
break;
|
break;
|
||||||
case MovementType.Walk:
|
case MovementType.Walk:
|
||||||
// https://minecraft.fandom.com/wiki/Walking#Usage - Walking 4.317 m/s
|
// https://minecraft.wiki/w/Walking#Usage - Walking 4.317 m/s
|
||||||
Config.Main.Advanced.MovementSpeed = 4;
|
Config.Main.Advanced.MovementSpeed = 4;
|
||||||
break;
|
break;
|
||||||
case MovementType.Sprint:
|
case MovementType.Sprint:
|
||||||
// https://minecraft.fandom.com/wiki/Sprinting#Usage - Sprinting 5.612 m/s
|
// https://minecraft.wiki/w/Sprinting#Usage - Sprinting 5.612 m/s
|
||||||
Config.Main.Advanced.MovementSpeed = 5;
|
Config.Main.Advanced.MovementSpeed = 5;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -3340,7 +3340,7 @@ namespace MinecraftClient
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
||||||
/// Map format and colors: https://minecraft.fandom.com/wiki/Map_item_format
|
/// Map format and colors: https://minecraft.wiki/w/Map_item_format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="mapid">Map ID of the map being modified</param>
|
/// <param name="mapid">Map ID of the map being modified</param>
|
||||||
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
||||||
|
|
|
||||||
|
|
@ -376,7 +376,7 @@ namespace MinecraftClient.Protocol
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
||||||
/// Map format and colors: https://minecraft.fandom.com/wiki/Map_item_format
|
/// Map format and colors: https://minecraft.wiki/w/Map_item_format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="mapid">Map ID of the map being modified</param>
|
/// <param name="mapid">Map ID of the map being modified</param>
|
||||||
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
||||||
|
|
|
||||||
|
|
@ -271,7 +271,7 @@ namespace MinecraftClient.Scripting
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
/// Called when an update of the map is sent by the server, take a look at https://wiki.vg/Protocol#Map_Data for more info on the fields
|
||||||
/// Map format and colors: https://minecraft.fandom.com/wiki/Map_item_format
|
/// Map format and colors: https://minecraft.wiki/w/Map_item_format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="mapid">Map ID of the map being modified</param>
|
/// <param name="mapid">Map ID of the map being modified</param>
|
||||||
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
/// <param name="scale">A scale of the Map, from 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)</param>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue