diff --git a/velocity/src/main/java/com/alttd/velocitychat/commands/partysubcommands/Create.java b/velocity/src/main/java/com/alttd/velocitychat/commands/partysubcommands/Create.java index fa011e8..785b7cc 100644 --- a/velocity/src/main/java/com/alttd/velocitychat/commands/partysubcommands/Create.java +++ b/velocity/src/main/java/com/alttd/velocitychat/commands/partysubcommands/Create.java @@ -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])