mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2025-04-12 15:15:45 +02:00
Fix not being able to read effects from RemoveEntityEffect packet (#1908)
fix being unable to read from RemoveEntityEffect due to wrong alias order
This commit is contained in:
parent
069783a353
commit
86e586da26
@ -867,7 +867,7 @@ public final class MinecraftReflection {
|
||||
}
|
||||
|
||||
public static Class<?> getMobEffectListClass() {
|
||||
return getMinecraftClass("world.effect.MobEffectList", "world.effect.MobEffect", "MobEffectList");
|
||||
return getMinecraftClass("world.effect.MobEffectList", "MobEffectList", "world.effect.MobEffect");
|
||||
}
|
||||
|
||||
public static Class<?> getSoundEffectClass() {
|
||||
|
Loading…
Reference in New Issue
Block a user