Skip to content

Commit

Permalink
Update GeyserIntegration.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchampions committed Feb 8, 2025
1 parent 51929b2 commit 8e7cfdc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ public class GeyserIntegration implements EventRegistrar {
private List<String> skullsHash = new ArrayList<>();

public void register() {
GeyserApi.api().eventBus().register(this, this);
try {
GeyserApi.api().eventBus().register(this, this);
} catch (RuntimeException ignored) {}
Slimefun.runAsync(() -> {
long start = System.nanoTime();
Slimefun.logger().info("开始加载自定义粘液科技Geyser支持");
Expand Down

0 comments on commit 8e7cfdc

Please sign in to comment.