Fixed NPE in DebugRoadRegen command

This commit is contained in:
Matt 2023-08-21 19:09:35 -04:00
parent ba9dab1f73
commit b74ba30281
1 changed files with 1 additions and 0 deletions

View File

@ -96,6 +96,7 @@ public class DebugRoadRegen extends SubCommand {
PlotArea area = location.getPlotArea();
if (area == null) {
player.sendMessage(TranslatableCaption.of("errors.not_in_plot_world"));
return false;
}
Plot plot = player.getCurrentPlot();
if (plot == null) {