1
0
mirror of https://github.com/plan-player-analytics/Plan.git synced 2025-01-12 19:30:44 +01:00

Added ViaVersion as an optional dependency on Velocity ()

This commit is contained in:
MAXOUXAX 2021-07-31 18:40:05 +02:00 committed by GitHub
parent ff3367834f
commit 9873eceeb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions
Plan
common/src/main/java/com/djrapitops/plan/delivery/rendering/html
velocity/src/main/java/com/djrapitops/plan

View File

@ -56,6 +56,7 @@ public class Contributors {
new Contributor("Malachiel", LANG),
new Contributor("Miclebrick", CODE),
new Contributor("Morsmorse", LANG),
new Contributor("MAXOUXAX", CODE),
new Contributor("Nogapra", LANG),
new Contributor("Sander0542", LANG),
new Contributor("Saph1s", LANG),

View File

@ -27,6 +27,7 @@ import com.velocitypowered.api.command.CommandManager;
import com.velocitypowered.api.event.Subscribe;
import com.velocitypowered.api.event.proxy.ProxyInitializeEvent;
import com.velocitypowered.api.event.proxy.ProxyShutdownEvent;
import com.velocitypowered.api.plugin.Dependency;
import com.velocitypowered.api.plugin.Plugin;
import com.velocitypowered.api.plugin.annotation.DataDirectory;
import com.velocitypowered.api.proxy.ProxyServer;
@ -54,6 +55,9 @@ import java.util.logging.Level;
name = "Plan",
version = "@version@",
description = "Player Analytics Plugin by AuroraLS3",
dependencies = {
@Dependency(id = "viaversion", optional = true)
},
authors = {"AuroraLS3"}
)
public class PlanVelocity implements PlanPlugin {