Fixed lang issue

This commit is contained in:
paulevsGitch 2020-11-19 11:08:08 +03:00
parent 42f7976052
commit dd9c0d3eff
3 changed files with 9 additions and 9 deletions

View file

@ -61,7 +61,7 @@ public class TranslationHelper {
Registry.ENTITY_TYPE.forEach((entity) -> {
Identifier id = Registry.ENTITY_TYPE.getId(entity);
if (id.getNamespace().equals(BetterEnd.MOD_ID)) {
String name = "biome." + BetterEnd.MOD_ID + "." + id.getPath();
String name = "entity." + BetterEnd.MOD_ID + "." + id.getPath();
if (!translationEn.has(name)) {
missingNamesEn.add(name);
}