diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/util/LegacyConverter.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/util/LegacyConverter.java index f904249dd..262df3f83 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/util/LegacyConverter.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/util/LegacyConverter.java @@ -65,9 +65,8 @@ import java.util.Map; } final BlockBucket bucket = new BlockBucket(); if (includeRatios) { - final double ratio = 100D / blocks.length; for (final Map.Entry count : counts.entrySet()) { - bucket.addBlock(count.getKey(), (int) (count.getValue() * ratio)); + bucket.addBlock(count.getKey(), (int) (count.getValue())); } } else { counts.keySet().forEach(bucket::addBlock);