9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-29 03:39:08 +00:00

Add priority to whereami region list

This commit is contained in:
SamB440
2023-03-19 13:38:15 +00:00
parent a34539030d
commit 8a440f9c13

View File

@@ -175,7 +175,7 @@ public class RPGRegionsIntegrationCommand extends BaseCommand {
} else {
sender.sendMessage(ChatColor.GREEN + "You are currently inside these regions:");
for (RPGRegionsRegion region : regions) {
sender.sendMessage(ChatColor.GREEN + " - " + region.getName());
sender.sendMessage(ChatColor.GREEN + " - " + region.getName() + " (p: " + region.getPriority() + ")");
}
}
}