Check if a user is already in a party before letting them make another party

This commit is contained in:
Teriuihi 2022-01-30 19:50:22 +01:00 committed by destro174
parent 304d825622
commit 8a89b08420

View File

@ -32,6 +32,11 @@ public class Create implements SubCommand {
source.sendMessage(Utility.parseMiniMessage(getHelpMessage()));
return;
}
if (PartyManager.getParty(player.getUniqueId()) != null)
{
source.sendMessage(Utility.parseMiniMessage(Config.ALREADY_IN_PARTY));
return;
}
if (PartyManager.getParty(args[1]) != null) {
source.sendMessage(Utility.parseMiniMessage(Config.PARTY_EXISTS, List.of(
Template.template("party", args[1])