Skip to content

Commit e9a33ed

Browse files
committed
update wiki links
1 parent 6003aa7 commit e9a33ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

api/src/main/java/com/github/juliarn/npclib/api/protocol/meta/DefaultEntityMetadata.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
interface DefaultEntityMetadata {
3333

34-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Entity - see index 0
34+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Entity - see index 0
3535
EntityMetadataFactory<Collection<EntityStatus>, Byte> ENTITY_STATUS =
3636
EntityMetadataFactory.<Collection<EntityStatus>, Byte>metaFactoryBuilder()
3737
.baseIndex(0)
@@ -51,7 +51,7 @@ interface DefaultEntityMetadata {
5151
return entryMask;
5252
}).build();
5353

54-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Entity - see index 6
54+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Entity - see index 6
5555
EntityMetadataFactory<EntityPose, EntityPose> ENTITY_POSE =
5656
EntityMetadataFactory.<EntityPose, EntityPose>metaFactoryBuilder()
5757
.baseIndex(6)
@@ -60,7 +60,7 @@ interface DefaultEntityMetadata {
6060
.availabilityChecker(versionAccessor -> versionAccessor.atLeast(1, 14, 0))
6161
.build();
6262

63-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Entity - see index 0 and 6
63+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Entity - see index 0 and 6
6464
EntityMetadataFactory<Boolean, Byte> SNEAKING = EntityMetadataFactory.<Boolean, Byte>metaFactoryBuilder()
6565
.baseIndex(0)
6666
.type(Byte.class)
@@ -73,15 +73,15 @@ interface DefaultEntityMetadata {
7373
.build())
7474
.build();
7575

76-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Entity - see index 7
76+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Entity - see index 7
7777
EntityMetadataFactory<Boolean, Integer> SHAKING = EntityMetadataFactory.<Boolean, Integer>metaFactoryBuilder()
7878
.baseIndex(7)
7979
.type(Integer.class)
8080
.inputConverter(value -> value ? 250 : 0)
8181
.availabilityChecker(versionAccessor -> versionAccessor.atLeast(1, 17, 0))
8282
.build();
8383

84-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Living_Entity - see index 8
84+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Living_Entity - see index 8
8585
EntityMetadataFactory<Boolean, Byte> USING_ITEM = EntityMetadataFactory.<Boolean, Byte>metaFactoryBuilder()
8686
.baseIndex(5)
8787
.type(Byte.class)
@@ -90,15 +90,15 @@ interface DefaultEntityMetadata {
9090
.availabilityChecker(versionAccessor -> versionAccessor.atLeast(1, 9, 0))
9191
.build();
9292

93-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Living_Entity - see index 12
93+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Living_Entity - see index 12
9494
EntityMetadataFactory<Integer, Integer> ARROW_COUNT = EntityMetadataFactory.<Integer, Integer>metaFactoryBuilder()
9595
.baseIndex(9)
9696
.type(Integer.class)
9797
.indexShiftVersions(10, 14, 17)
9898
.inputConverter(value -> Math.max(0, value))
9999
.build();
100100

101-
// https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Entity_metadata#Player - see index 17
101+
// https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Player - see index 17
102102
EntityMetadataFactory<Boolean, Byte> SKIN_LAYERS = EntityMetadataFactory.<Boolean, Byte>metaFactoryBuilder()
103103
.baseIndex(10)
104104
.type(Byte.class)

0 commit comments

Comments
 (0)