3
0
Mirror von https://github.com/Moulberry/AxiomPaperPlugin.git synchronisiert 2024-09-29 16:00:04 +02:00

PlotSquared: Return correct value when PlotSquared isn't installed

Dieser Commit ist enthalten in:
Moulberry 2023-11-17 00:36:33 +08:00
Ursprung c027e56fc4
Commit b2d67e4f91

Datei anzeigen

@ -26,7 +26,7 @@ public class PlotSquaredIntegration {
public static boolean isPlotWorld(World world) { public static boolean isPlotWorld(World world) {
if (!Bukkit.getPluginManager().isPluginEnabled("PlotSquared")) { if (!Bukkit.getPluginManager().isPluginEnabled("PlotSquared")) {
return true; return false;
} }
return PlotSquaredIntegrationImpl.isPlotWorld(world); return PlotSquaredIntegrationImpl.isPlotWorld(world);
} }