Add EntityUtils#asTranslatable to convert EntityType to the MiniMessage key

Yes
This commit is contained in:
whitebelyash 2026-02-08 22:04:41 +04:00
parent 877ffe5015
commit d0fe67d988

View file

@ -137,4 +137,8 @@ public class EntityUtils extends Queue {
return result; return result;
} }
public static String asTranslatable(EntityType type){
return "<lang:" + type.translationKey() + ">";
}
} }