BungeeCord
This page describes how to integrate Lamp with BungeeCord, as well as what to expect out of it.
Setting up
Adding Lamp dependency
<dependencies>
<!-- Required for all platforms -->
<dependency>
<groupId>io.github.revxrsal</groupId>
<artifactId>lamp.common</artifactId>
<version>[VERSION]</version>
</dependency>
<!-- BungeeCord module -->
<dependency>
<groupId>io.github.revxrsal</groupId>
<artifactId>lamp.bungee</artifactId>
<version>[VERSION]</version>
</dependency>
</dependencies>dependencies {
// Required for all platforms
implementation 'io.github.revxrsal:lamp.common:[VERSION]'
// Bungee module
implementation 'io.github.revxrsal:lamp.bungee:[VERSION]'
}Optional: Preserve parameter names
Bungee-specific annotations
@CommandPermission
@CommandPermissionSupported Bungee types
Example
Last updated
Was this helpful?