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 43ad71c commit 362bd23Copy full SHA for 362bd23
extension/src/main/java/dev/kejona/geyserblockplatform/extension/GeyserBlockPlatformExtension.java
@@ -11,8 +11,6 @@
11
import org.geysermc.geyser.api.event.lifecycle.GeyserPostInitializeEvent;
12
import org.geysermc.geyser.api.extension.Extension;
13
14
-import java.io.IOException;
15
-
16
public class GeyserBlockPlatformExtension implements Extension {
17
18
private BedrockHandler handler;
@@ -26,7 +24,7 @@ public void onPostInitialize(GeyserPostInitializeEvent event) {
26
24
27
25
try {
28
this.config = ConfigLoader.loadConfig(this.dataFolder());
29
- } catch (IOException e) {
+ } catch (Exception e) {
30
logger().severe("Failed to load config");
31
e.printStackTrace();
32
disable();
0 commit comments