mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-09 09:57:34 +01:00
commit
c6b0dfaa4c
@ -675,7 +675,7 @@ public class GroupManager extends JavaPlugin {
|
||||
}
|
||||
auxGroup = dataHolder.getGroup(args[0]);
|
||||
if (auxGroup != null) {
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[0] + "' Group already exist!");
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[0] + "' Group already exists!");
|
||||
return true;
|
||||
}
|
||||
// Seems OK
|
||||
@ -697,7 +697,7 @@ public class GroupManager extends JavaPlugin {
|
||||
}
|
||||
auxGroup = dataHolder.getGroup(args[0]);
|
||||
if (auxGroup == null) {
|
||||
sender.sendMessage(ChatColor.RED + "" + args[0] + " Group doesnt exist!");
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[0] + "' Group doesnt exist!");
|
||||
return true;
|
||||
}
|
||||
// Seems OK
|
||||
@ -1929,7 +1929,7 @@ public class GroupManager extends JavaPlugin {
|
||||
}
|
||||
auxGroup = dataHolder.getGroup(args[1]);
|
||||
if (auxGroup == null) {
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[0] + "' Group doesnt exist!");
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[1] + "' Group doesnt exist!");
|
||||
return true;
|
||||
}
|
||||
if (auxGroup.isGlobal()) {
|
||||
@ -1985,7 +1985,7 @@ public class GroupManager extends JavaPlugin {
|
||||
}
|
||||
auxGroup = dataHolder.getGroup(args[1]);
|
||||
if (auxGroup == null) {
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[0] + "' Group doesnt exist!");
|
||||
sender.sendMessage(ChatColor.RED + "'" + args[1] + "' Group doesnt exist!");
|
||||
return true;
|
||||
}
|
||||
if (auxGroup.isGlobal()) {
|
||||
|
Loading…
Reference in New Issue
Block a user