From 5d515b38632a5ff40f78fa53a70806b85dee1a72 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sat, 6 Apr 2019 12:55:45 +1100 Subject: [PATCH] This shouldn't have been made private --- .../plotsquared/plot/object/worlds/SinglePlotArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/worlds/SinglePlotArea.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/worlds/SinglePlotArea.java index 101941391..6a8782d1a 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/worlds/SinglePlotArea.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/worlds/SinglePlotArea.java @@ -98,7 +98,7 @@ public class SinglePlotArea extends GridPlotWorld { return super.addPlotIfAbsent(plot); } - private Plot adapt(Plot p) { + protected Plot adapt(Plot p) { if (p instanceof SinglePlot) { return p; }