Skip to content

Commit

Permalink
1.0.9 commit1
Browse files Browse the repository at this point in the history
  • Loading branch information
adam committed Mar 18, 2024
1 parent 6456e5e commit 6e7ddc5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions common/src/main/java/com/adamcalculator/dynamicpack/Mod.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,14 @@ public static boolean isHTTPTrafficAllowed() {
public static boolean isDebugScreenAllowed() {
return true;
}

public static void debugNetwork() {
if (isRelease()) return;

try {
Thread.sleep(13);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
}

0 comments on commit 6e7ddc5

Please sign in to comment.