mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-25 16:09:44 +00:00
another string fix.
This commit is contained in:
parent
519785d09f
commit
411b4e2b8f
1 changed files with 1 additions and 1 deletions
|
@ -1901,7 +1901,7 @@ public class GroupManager extends JavaPlugin {
|
|||
auxString = auxString.substring(0, auxString.lastIndexOf(","));
|
||||
}
|
||||
if (auxString2.lastIndexOf(",") > 0) {
|
||||
auxString2 = auxString.substring(0, auxString2.lastIndexOf(","));
|
||||
auxString2 = auxString2.substring(0, auxString2.lastIndexOf(","));
|
||||
}
|
||||
sender.sendMessage(ChatColor.YELLOW + "Groups Available: " + ChatColor.WHITE + auxString);
|
||||
sender.sendMessage(ChatColor.YELLOW + "GlobalGroups Available: " + ChatColor.WHITE + auxString2);
|
||||
|
|
Loading…
Reference in a new issue