We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94a9d6 commit e09f00aCopy full SHA for e09f00a
src/main/java/fast_reset/client/mixin/ResetMixin.java
@@ -12,7 +12,7 @@
12
import org.spongepowered.asm.mixin.injection.Redirect;
13
14
import java.io.IOException;
15
-import java.util.Iterator;
+import java.util.*;
16
17
@Mixin(MinecraftServer.class)
18
public class ResetMixin {
@@ -43,8 +43,7 @@ private boolean getWorldsInjectTwo(Iterator<ServerWorld> iterator){
43
if (world != null) {
44
try {
45
world.close();
46
- } catch (IOException ignored) {
47
-
+ } catch (ConcurrentModificationException | IOException ignored) {
48
}
49
50
0 commit comments