diff --git a/api/src/main/java/com/alttd/chat/config/Config.java b/api/src/main/java/com/alttd/chat/config/Config.java index 0c99ff2..893f89a 100755 --- a/api/src/main/java/com/alttd/chat/config/Config.java +++ b/api/src/main/java/com/alttd/chat/config/Config.java @@ -245,7 +245,7 @@ public final class Config { } - public static String PARTY_FORMAT = "( > → Party) "; + public static String PARTY_FORMAT = "(\"> → Party) "; public static String PARTY_SPY = "PC: : "; public static String NO_PERMISSION = "You don't have permission to use this command."; public static String NO_CONSOLE = "This command can not be used by console"; @@ -266,7 +266,11 @@ public final class Config { public static String CANT_REMOVE_PARTY_OWNER = "You can't remove yourself, please leave instead."; public static String REMOVED_FROM_PARTY = "You were removed from the '' chat party."; public static String REMOVED_USER_FROM_PARTY = "You removed from the chat party!"; - public static String NOT_A_PARTY_MEMBER = " is not a member of your party!"; + public static String NOT_A_PARTY_MEMBER = " is not a member of your party!"; + public static String ALREADY_IN_PARTY = "You're already in a party!"; + public static String SENT_PARTY_INV = "You send a chat party invite to !"; + public static String JOIN_PARTY_CLICK_MESSAGE = " '>" + + "You received an invite to join click this message to accept."; public static String PARTY_INFO = """ Chat party info: Name: @@ -292,6 +296,8 @@ public final class Config { CANT_REMOVE_PARTY_OWNER = getString("party.messages.cant-remove-owner", CANT_REMOVE_PARTY_OWNER); REMOVED_FROM_PARTY = getString("party.messages.removed-from-party", REMOVED_FROM_PARTY); NOT_A_PARTY_MEMBER = getString("party.messages.not-a-party-member", NOT_A_PARTY_MEMBER); + JOIN_PARTY_CLICK_MESSAGE = getString("party.messages.join-party-click-message", JOIN_PARTY_CLICK_MESSAGE); + SENT_PARTY_INV = getString("party.messages.sent-party-invite", SENT_PARTY_INV); PARTY_INFO = getString("party.messages.party-info", PARTY_INFO); }