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
parent 89938338b1
commit a0a60757f6

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])