3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 04:51:22 +02:00

temporary disable plotsquared hook for schems

Dieser Commit ist enthalten in:
Jesse Boyd 2019-11-02 20:44:49 +01:00
Ursprung 32d837414b
Commit e20e48f5fb
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F
2 geänderte Dateien mit 11 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -14,6 +14,8 @@ public class Settings extends Config {
@Ignore @Ignore
public boolean PROTOCOL_SUPPORT_FIX = false; public boolean PROTOCOL_SUPPORT_FIX = false;
@Ignore
public boolean PLOTSQUARED_HOOK = false;
@Comment("These first 6 aren't configurable") // This is a comment @Comment("These first 6 aren't configurable") // This is a comment
@Final // Indicates that this value isn't configurable @Final // Indicates that this value isn't configurable

Datei anzeigen

@ -38,14 +38,16 @@ public class PlotSquaredFeature extends FaweMaskManager {
public PlotSquaredFeature() { public PlotSquaredFeature() {
super("PlotSquared"); super("PlotSquared");
Fawe.debug("Optimizing PlotSquared"); Fawe.debug("Optimizing PlotSquared");
setupBlockQueue(); if (com.boydti.fawe.config.Settings.IMP.PLOTSQUARED_HOOK) {
setupSchematicHandler(); setupBlockQueue();
setupChunkManager(); setupSchematicHandler();
if (Settings.PLATFORM.equalsIgnoreCase("bukkit")) { setupChunkManager();
new FaweTrim(); if (Settings.PLATFORM.equalsIgnoreCase("bukkit")) {
new FaweTrim();
}
if (MainCommand.getInstance().getCommand("generatebiome") == null) {
new PlotSetBiome();
} }
if (MainCommand.getInstance().getCommand("generatebiome") == null) {
new PlotSetBiome();
} }
// TODO: revisit this later on // TODO: revisit this later on
/* /*