don't report generator settings

This commit is contained in:
Kermina Awad 2020-06-29 11:40:01 -04:00
parent 3afca50930
commit d5013546d1
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class MetricsConfigurator {
private String getGeneratorName(MultiverseWorld world) {
String gen = world.getGenerator();
return (gen != null && !gen.equalsIgnoreCase("null")) ? gen : NO_GENERATOR_NAME;
return (gen != null && !gen.equalsIgnoreCase("null")) ? gen.split(":")[0] : NO_GENERATOR_NAME;
}
private void addEnvironmentsMetric() {