diff --git a/src/main/java/world/bentobox/bentobox/database/objects/Island.java b/src/main/java/world/bentobox/bentobox/database/objects/Island.java index a0f5c8c97..f30a1a148 100644 --- a/src/main/java/world/bentobox/bentobox/database/objects/Island.java +++ b/src/main/java/world/bentobox/bentobox/database/objects/Island.java @@ -708,6 +708,7 @@ public class Island implements DataObject { public boolean showInfo(User user) { BentoBox plugin = BentoBox.getInstance(); user.sendMessage("commands.admin.info.title"); + user.sendMessage("commands.admin.info.island-uuid", "[uuid]", uniqueId); if (owner == null) { user.sendMessage("commands.admin.info.unowned"); } else { diff --git a/src/main/resources/locales/en-US.yml b/src/main/resources/locales/en-US.yml index 37340cf1d..d064aecae 100644 --- a/src/main/resources/locales/en-US.yml +++ b/src/main/resources/locales/en-US.yml @@ -120,6 +120,7 @@ commands: description: "get info on where you are or player's island" no-island: "&cYou are not in an island right now..." title: "========== Island Info ============" + island-uuid: "UUID: [uuid]" owner: "Owner: [owner] ([uuid])" last-login: "Last login: [date]" deaths: "Deaths: [number]"