Merge pull request #139 from VelocityPowered/reload-command

Reload command
This commit is contained in:
Andrew Steinborn
2018-12-01 18:04:09 -05:00
committed by GitHub
6 changed files with 167 additions and 49 deletions

View File

@@ -0,0 +1,12 @@
package com.velocitypowered.api.event.proxy;
/**
* This event is fired when the proxy is reloaded by the user using {@code /velocity reload}.
*/
public class ProxyReloadEvent {
@Override
public String toString() {
return "ProxyReloadEvent";
}
}