From d0fe67d9884c0b09e67bef889143b519635eda0e Mon Sep 17 00:00:00 2001 From: whitebelyash Date: Sun, 8 Feb 2026 22:04:41 +0400 Subject: [PATCH] Add EntityUtils#asTranslatable to convert EntityType to the MiniMessage key Yes --- src/main/java/net/coreprotect/utility/EntityUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/net/coreprotect/utility/EntityUtils.java b/src/main/java/net/coreprotect/utility/EntityUtils.java index 7e1ab37..79ceff5 100644 --- a/src/main/java/net/coreprotect/utility/EntityUtils.java +++ b/src/main/java/net/coreprotect/utility/EntityUtils.java @@ -137,4 +137,8 @@ public class EntityUtils extends Queue { return result; } + + public static String asTranslatable(EntityType type){ + return ""; + } }