1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2026-01-04 15:31:48 +00:00
This commit is contained in:
Tim203
2020-03-25 13:45:51 +01:00
parent 95e1a8122b
commit 9e1ba115de

View File

@@ -84,7 +84,7 @@ public class BukkitInjector {
public static boolean removeInjection() throws Exception {
if (!isInjected()) return true;
for (ChannelFuture future : injectedClients) {
for (ChannelFuture future : new ArrayList<>(injectedClients)) {
removeInjectedClient(future, null);
}