Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Bugfix -> Clear old debug data
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Jul 14, 2023
1 parent c29ccd0 commit f4e46ee
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ public void run() {
}));

configuration.save(file);
instance.getCore().getDebugPingResponses().clear();
instance.sendMessage(sender, localization.get("debug.finished.first"));
instance.sendMessage(sender, localization.get("debug.finished.second") + file.getAbsolutePath() + " " + localization.get("utils.copy"), "COPY_TO_CLIPBOARD", file.getAbsolutePath(), null, null);
instance.getCore().setDebugRunning(false);
Expand All @@ -295,7 +296,7 @@ public void run() {
}
});
}
}, 2000L * (amount - 1) + 2500);
}, 2000L * amount + 500);
}

private void gameshieldSelector() {
Expand Down

0 comments on commit f4e46ee

Please sign in to comment.