Skip to content

Commit

Permalink
Update Minecraft Wiki links to new domain (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spongecade authored Sep 27, 2023
1 parent ad42e78 commit 4f14c58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Obsidian/Blocks/BlockMeta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public struct BlockMeta

public IReadOnlyList<string> CanPlaceOn { get; internal set; }

// https://minecraft.gamepedia.com/Chunk_format#Block_entity_format
// https://minecraft.wiki/w/Chunk_format#Block_entity_format
public NbtCompound BlockEntityTag { get; internal set; }
public NbtCompound BlockStateTag { get; internal set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Obsidian.Net.Packets.Play.Clientbound;
public partial class SpawnExperienceOrbPacket : IClientboundPacket
{
[Field(0), VarLength]
private const int EntityId = 2; // Source: https://minecraft.gamepedia.com/Java_Edition_data_values/Pre-flattening/Entity_IDs
private const int EntityId = 2; // Source: https://minecraft.wiki/w/Java_Edition_data_values/Pre-flattening/Entity_IDs

[Field(1), DataFormat(typeof(double))]
public VectorF Position { get; }
Expand Down
2 changes: 1 addition & 1 deletion Obsidian/WorldData/Level.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Obsidian.WorldData;

/// <summary>
/// https://minecraft.gamepedia.com/Java_Edition_level_format
/// https://minecraft.wiki/w/Java_Edition_level_format
/// </summary>
public sealed class Level
{
Expand Down

0 comments on commit 4f14c58

Please sign in to comment.