The High-performance Minecraft LCE → Java proxy supporting TU13, TU19, Protocol 47 (1.8.x), & ViaVersion.
Reunion is the first feature complete proxy implementation for LCE, built specifically for performance & use in production environments.
If you aren't a network owner & just want to play on a Java server:
- Run the JAR once to generate
config.yml. - Set
java-host&java-portto the server you want to join. - If the server is not 1.8.8, set
via.enabled: true. - Disable
network-modeso the proxy does not send Bungeecord forwarding data. - If the server requires an online mode account, run the proxy & use the console command
loginto link your Microsoft account.
If you are running a server network:
- Set
network-mode: trueinconfig.yml. - Add your backend servers in the
serverssection. - Configure
forwarding.mode(BUNGEECORD,BUNGEEGUARD, orVELOCITY) to match what your backend expects. - If your backend servers do NOT have ViaVersion installed on them, you can set
via.enabled: truein the config to handle modern versions. - Manage permissions using the SQLITE db in
data/permissions.db/permcommand.
Most anticheats are compatible, but standing on blocks without a proper 1:1 translation (e.g slime blocks) may cause flags. The speed potion effect is also calculated differently on LCE compared to Java. Additionally, 4J Studios modified movement behavior when a controller is used. This logic is incompatible with most modern Java anticheats such as Polar or Grim.
We want to create complete compatibility between LCE & Java across all platforms, whether through official services (XBL/PSN) or reimplementations (RPCN, Pretendo, NetPlay, etc).
This repository does not contain any Minecraft LCE source code. It is a clean-room reimplementation of the LCE protocol, which is heavily based on Java 1.3.2 & 1.6.1.
Full support for Bungeecord/Velocity IP forwarding & plugin messaging channels out of the box. For more details on which channels are supported, visit the implementation source here.
You can create plugins using our API. It is currently basic & incomplete, but functionality is being developed. Documentation is a work in progress, but LLM generated Javadocs are available in the source.
Add the API via JitPack:
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
compileOnly("com.github.briiqn:reunion:<COMMIT>")
}Replace <COMMIT> with the latest commit hash or tag from the releases tab.
We do not support client forks that backport features to LCE (such as adding items/features that were never present), excluding official builds or backports initially developed by 4J Studios. Reunion supports 4J Studios' implementation as-is, not community additions.
- Reunion Skins: Spigot plugin that forwards LCE skins to your backend so Java players can see them.
- Reunion Limbo: A simple limbo plugin
- ViaVersion
- 4J Studios
- Velocity (Our API is heavily inspired by theirs)
- LCEMP (Initial TCP application layer for allowing connections from LCEMP compatible clients)
- Lucko (protobufs for spark and sparkprofiler file format & website)
- PrismarineJS (Collision & item remapping data)