Allow null mapped entity name

This commit is contained in:
Nassim Jahnke 2023-11-09 17:58:10 +10:00
parent fb7cd2d9e3
commit ac5fbdd7f4
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -81,11 +81,11 @@ public class EntityData {
return null;
}
String name = protocol.getMappingData().mappedEntityName(key);
final String name = protocol.getMappingData().mappedEntityName(key);
if (name == null) {
ViaBackwards.getPlatform().getLogger().warning("Entity name for " + key + " not found in protocol " + protocol.getClass().getSimpleName());
name = key;
return null;
}
if (componentType == ComponentType.JSON) {
return ChatRewriter.legacyTextToJson(name);
} else if (componentType == ComponentType.TAG) {