Skip to content

Commit

Permalink
Maybe #1239
Browse files Browse the repository at this point in the history
  • Loading branch information
boy0001 committed Aug 17, 2016
1 parent 3558105 commit 005e13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/main/java/com/intellectualcrafters/plot/PS.java
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,6 @@ public PlotManager getPlotManager(Location location) {
* @see #removePlotArea(PlotArea) To remove the reference
*/
public void addPlotArea(PlotArea plotArea) {
plotArea.setupBorder();
HashMap<PlotId, Plot> plots;
if (plots_tmp == null || (plots = plots_tmp.remove(plotArea.toString())) == null) {
if (plotArea.TYPE == 2) {
Expand Down Expand Up @@ -729,6 +728,7 @@ public RegionWrapper getRegion(PlotArea value) {
this.plotAreaGrid.put(plotArea.worldname, map);
}
map.add(plotArea);
plotArea.setupBorder();
}

/**
Expand Down

0 comments on commit 005e13a

Please sign in to comment.