File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/test/java/com/comphenix/protocol/wrappers Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ group = "com.comphenix.protocol"
13
13
version = " 5.4.0-SNAPSHOT"
14
14
description = " Provides access to the Minecraft protocol"
15
15
16
- val mcVersion = " 1.21.2 "
16
+ val mcVersion = " 1.21.3 "
17
17
val isSnapshot = version.toString().endsWith(" -SNAPSHOT" )
18
18
val buildNumber = System .getenv(" BUILD_NUMBER" ) ? : " "
19
19
val isJenkins = buildNumber.isNotEmpty()
@@ -26,11 +26,11 @@ repositories {
26
26
mavenCentral()
27
27
28
28
maven {
29
- url = uri(" https://repo.dmulloy2.net /repository/public /" )
29
+ url = uri(" https://repo.codemc.io /repository/nms /" )
30
30
}
31
31
32
32
maven {
33
- url = uri(" https://repo.codemc.io /repository/nms /" )
33
+ url = uri(" https://repo.dmulloy2.net /repository/public /" )
34
34
}
35
35
36
36
maven {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void testRegistrables() {
26
26
// some randomly selected registrables which we can prove that work using the bukkit api
27
27
validate (MinecraftReflection .getEntityTypes (), EntityType .WARDEN .getKey ());
28
28
validate (MinecraftReflection .getItemClass (), Material .DIAMOND_AXE .getKey ());
29
- validate (MinecraftReflection .getAttributeBase (), Attribute .GENERIC_MAX_HEALTH .getKey ());
29
+ validate (MinecraftReflection .getAttributeBase (), Attribute .MAX_HEALTH .getKey ());
30
30
validate (MinecraftReflection .getSoundEffectClass (), Sound .ENTITY_WARDEN_SNIFF .getKey ());
31
31
validate (MinecraftReflection .getMobEffectListClass (), PotionEffectType .REGENERATION .getKey ());
32
32
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void testRegistries() {
26
26
// some randomly selected registries which we can proof to work using the bukkit api
27
27
validate (MinecraftReflection .getEntityTypes (), EntityType .WARDEN .getKey ());
28
28
validate (MinecraftReflection .getItemClass (), Material .DIAMOND_AXE .getKey ());
29
- validate (MinecraftReflection .getAttributeBase (), Attribute .GENERIC_MAX_HEALTH .getKey ());
29
+ validate (MinecraftReflection .getAttributeBase (), Attribute .MAX_HEALTH .getKey ());
30
30
validate (MinecraftReflection .getSoundEffectClass (), Sound .ENTITY_WARDEN_SNIFF .getKey ());
31
31
validate (MinecraftReflection .getMobEffectListClass (), PotionEffectType .REGENERATION .getKey ());
32
32
}
You can’t perform that action at this time.
0 commit comments