diff --git a/Core/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java b/Core/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java index dd6aad414..82ca91947 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java @@ -84,7 +84,11 @@ public class PlotSettings { } public Map getRatings() { - return this.ratings == null ? new HashMap() : this.ratings; + if (this.ratings == null) { + this.ratings = new HashMap<>(); + + } + return this.ratings; } public boolean setMerged(int direction, boolean merged) {