Fix an issue getting chat component arrays
Dieser Commit ist enthalten in:
Ursprung
1c8e3b5ee3
Commit
18a45aace0
@ -614,7 +614,7 @@ public class PacketContainer implements Serializable {
|
||||
public StructureModifier<WrappedChatComponent[]> getChatComponentArrays() {
|
||||
// Convert to and from the Bukkit wrapper
|
||||
return structureModifier.<WrappedChatComponent[]>withType(
|
||||
MinecraftReflection.getIChatBaseComponentClass(),
|
||||
MinecraftReflection.getIChatBaseComponentArrayClass(),
|
||||
BukkitConverters.getIgnoreNull(new WrappedChatComponentArrayConverter()));
|
||||
}
|
||||
|
||||
|
@ -742,6 +742,10 @@ public class MinecraftReflection {
|
||||
}
|
||||
}
|
||||
|
||||
public static Class<?> getIChatBaseComponentArrayClass() {
|
||||
return getArrayClass(getIChatBaseComponentClass());
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the NMS chat component text class.
|
||||
* @return The chat component class.
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren