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.
Waypoints#init
1 parent 031ce0e commit 7a68800Copy full SHA for 7a68800
1 file changed
src/main/java/meteordevelopment/meteorclient/systems/waypoints/Waypoints.java
@@ -29,7 +29,6 @@
29
30
import java.io.File;
31
import java.io.FileInputStream;
32
-import java.io.IOException;
33
import java.io.InputStream;
34
import java.util.Collection;
35
import java.util.Iterator;
@@ -75,7 +74,7 @@ public void init() {
75
74
AbstractTexture texture = new NativeImageBackedTexture(() -> name, NativeImage.read(inputStream));
76
icons.put(name, texture);
77
}
78
- catch (IOException e) {
+ catch (Exception e) {
79
MeteorClient.LOG.error("Failed to read a waypoint icon", e);
80
81
0 commit comments