Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamKracker committed Dec 24, 2024
1 parent 9e826b3 commit 1df2ddb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ public static void register() {
HypixelModAPI.getInstance().createHandler(ClientboundPartyInfoPacket.class, PartyUtils::handle);
HypixelModAPI.getInstance().createHandler(ClientboundHelloPacket.class, packet -> request());
CookiesMod.getExecutorService().scheduleAtFixedRate(() -> {
if (LocationUtils.isInSkyblock())
if (LocationUtils.isInSkyblock()) {
request();
}
}, 0, 10, java.util.concurrent.TimeUnit.SECONDS);
}

Expand Down

0 comments on commit 1df2ddb

Please sign in to comment.