Skip to content

Commit

Permalink
Increase FA rate
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSchlueter committed Nov 2, 2024
1 parent d460241 commit da5345d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/oliver/fancynpcs/FancyNpcs.java
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private void registerMetrics() {
metrics.addCustomChart(new Metrics.SimplePie("using_development_build", () -> isDevelopmentBuild ? "Yes" : "No"));

int randomRes = new Random(System.currentTimeMillis()).nextInt(100);
if (isDevelopmentBuild || randomRes < 50) {
if (isDevelopmentBuild || randomRes < 75) {
fancyAnalytics.registerMinecraftPluginMetrics(instance);
fancyAnalytics.getExceptionHandler().registerLogger(getLogger());
fancyAnalytics.getExceptionHandler().registerLogger(Bukkit.getLogger());
Expand Down

0 comments on commit da5345d

Please sign in to comment.