New Features
- Add setting of whether to send server join/leave/move messages
message-sending-setting:
join: true
leave: true
switch: true
first-join: true # Requires LuckPerms
- Add setting of server permission check
- Add a proxy permission that is required when the player tries to connect to the proxy.
server-permission:
enable: true
proxy: "serverconnector.connect.proxy"
hub: "bungeecord.server.hub" # servername: "<permission>" to use a custom permission node. Default is `bungeecord.server.<servername>`.
Fixes
- Escape single quotes in
en.yml
- You need edit messages in
en.yml
as follows:
serverconnector:
server:
- no-permission: "You don't have the permission to connect to the server {0}: {1}"
+ no-permission: "You don''t have the permission to connect to the server {0}: {1}"
proxy:
- no-permission: "You don't have the permission to connect to the proxy."
+ no-permission: "You don''t have the permission to connect to the proxy."
command:
slash-server:
- no-permission: "You don't have the permission to execute this command: {0}"
+ no-permission: "You don''t have the permission to execute this command: {0}"
Others
- Checks if the player is still present when sending a join message late
- Move ServerConnectEvent listener from ServerListener to PlayerListener
- Update dependencies