From 7687d7705ba6b0171fe275083b98fd5a143bdeae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Fri, 10 Jul 2020 18:38:14 +0200 Subject: [PATCH] Fix merge issue --- Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 0dec9bf8f..7f3a52f4c 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -377,7 +377,7 @@ public abstract class PlotPlayer

implements CommandCaller, OfflinePlotPlayer @NotNull public Location getLocation() { Location location = getMeta("location"); if (location != null) { - return location.copy(); // Always return a copy of the location + return location; } return getLocationFull(); }