
JLang.entity() uses wrong translation key type
Fourmisain opened this issue ยท 1 comments
ARRP's JLang.entity()
produces translation keys of the form "entity_type.<namespace>.<path>"
when it should be "entity.<namespace>.<path>"
.
The latter can be seen in the Minecraft en_us.json file, e.g. "entity.minecraft.polar_bear": "Polar Bear"
and EntityType.getTranslationKey()
also uses "entity"
.
Not a big deal when there's JLang.entityRespect()
, just letting you know.
Should be easily fixed by changing these 2 strings here:
ARRP/src/main/java/net/devtech/arrp/json/lang/JLang.java
Lines 114 to 115 in 42ff4d6
ARRP/src/main/java/net/devtech/arrp/json/lang/JLang.java
Lines 146 to 147 in 42ff4d6