don't reassign pw I guess

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jordan
2025-08-26 16:16:02 +01:00
committed by GitHub
parent cb9a8a6cfb
commit 75b2665f7d

View File

@@ -387,7 +387,7 @@ public class PlotListener {
if (plot.hasOwner()) {
PlotArea pw = plot.getArea();
if (pw == null) {
if (nextPlot == null || (pw = nextPlot.getArea()) == null) {
if (nextPlot == null || nextPlot.getArea() == null) {
return true;
}
}