Compare commits

..

5 Commits

Author SHA1 Message Date
f948b287f5 new event TabCompleteRequestEvent and deprecate TabCompleteEvent 2024-02-17 18:30:11 +01:00
85d372ae7e Add CommandsDeclareEvent to declare commands with brigadier API 2024-02-17 18:30:11 +01:00
f38c4a6e94 Server branding now includes the backend server name 2024-02-17 18:30:11 +01:00
aefd61943b Multi-session with same Minecraft account with specific permission
Players with permission bungeecord.multiple_connect can have multiple connections with the same Minecraft account.
The UUID and player name is altered to avoid collision with other player:
UUID : xxxxxxxx-xxxx-VIxx-xxxx-xxxxxxxxxxxx
- The UUID version (V above) is now the provided version + 8 (for online player, it is 4, so it becomes C).
- The I digit will follow the index of the duplicated player : first duplicated player is 1, second one is 2.
- The name of the player will be the real player name, followed by the character "." (dot) followed by the duplication index.

Bedrock accounts connected using the Floodgate plugin will not be able to connect multiple times due to the risk of xUID collision.
2024-02-17 18:30:11 +01:00
f08fb3cdfe Change projet configuration and POM for Pandacube 2024-02-17 18:29:40 +01:00

View File

@ -33,7 +33,7 @@
</dependencies> </dependencies>
<build> <build>
<finalName>BungeeCord</finalName> <finalName>BungeeCord-${project.version}-${build.number}</finalName>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>