You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
THIS PLUGIN CURRENTLY ONLY WORKS ON LATEST SPIGOT BUILD
3
2
AS A FIX WAS REQUIRED FOR THIS PLUGIN TO WORK.
4
3
(if you are on paper, you need to wait for upstream merge)
@@ -9,9 +8,12 @@ Contributions are welcome, we aim to provide bukkit, bungeecord and velocity sup
9
8
10
9
This software is still work in progress.
11
10
12
-
This software aims to provide a minecraft server network functionallity utilizing the transfer and cookie packets to create a fast and secure way of data transfer and transfer of players to different servers.
11
+
This software aims to provide a minecraft server network functionallity utilizing the transfer and cookie packets to
12
+
create a fast and secure way of data transfer and transfer of players to different servers.
13
13
14
-
You first need to start the server and copy the secret key from the server config into all plugin configs of the minecraft servers.
14
+
You first need to start the server and copy the secret key from the server config into all plugin configs of the
15
+
minecraft servers.
15
16
Do not share this secret key!
16
17
17
-
IF YOU LEAKED THE KEY, PLEASE REMOVE THE KEY FROM THE MASTER SERVER CONFIG AND GENERATE A NEW ONE. (BY RESTARTING CONVEY)
18
+
IF YOU LEAKED THE KEY, PLEASE REMOVE THE KEY FROM THE MASTER SERVER CONFIG AND GENERATE A NEW ONE. (BY RESTARTING
Copy file name to clipboardexpand all lines: bukkit/src/main/java/net/outfluencer/convey/bukkit/commands/GKickCommand.java
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
packagenet.outfluencer.convey.bukkit.commands;
2
2
3
3
importcom.google.common.collect.Iterables;
4
+
importlombok.RequiredArgsConstructor;
4
5
importnet.outfluencer.convey.api.Convey;
5
6
importnet.outfluencer.convey.bukkit.ConveyBukkit;
6
7
importorg.bukkit.ChatColor;
@@ -14,24 +15,27 @@
14
15
importjava.util.List;
15
16
importjava.util.Locale;
16
17
18
+
@RequiredArgsConstructor
17
19
@Commands(@org.bukkit.plugin.java.annotation.command.Command(name = "gkick", desc = "Kicks a player from the network", permission = "convey.command.gkick", usage = "/gkick <player>"))
0 commit comments