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 434d4477e..8907a2069 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -836,6 +836,15 @@ public abstract class PlotPlayer
implements CommandCaller, OfflinePlotPlayer
}
}
+ /**
+ * Get this player's {@link LockRepository}
+ *
+ * @return Lock repository instance
+ */
+ @Nonnull public LockRepository getLockRepository() {
+ return this.lockRepository;
+ }
+
@FunctionalInterface
public interface PlotPlayerConverter