Fix merge issue

This commit is contained in:
Alexander Söderberg 2020-07-10 18:38:14 +02:00
parent 21ad9a36c8
commit 7687d7705b
No known key found for this signature in database
GPG Key ID: C0207FF7EA146678

View File

@ -377,7 +377,7 @@ public abstract class PlotPlayer<P> 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();
}