fix: only send invalid region messages with debug true (#2238)

- Addresses #2188
Dieser Commit ist enthalten in:
Jordan 2023-05-22 19:33:15 +01:00 committet von GitHub
Ursprung 7c01c1e95e
Commit 435161d566
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -130,7 +130,9 @@ public class WEManager {
backupRegions.add(region);
}
} else {
player.print(Caption.of("fawe.error.region-mask-invalid", mask.getClass().getSimpleName()));
if (Settings.settings().ENABLED_COMPONENTS.DEBUG) {
player.printDebug(Caption.of("fawe.error.region-mask-invalid", mask.getClass().getSimpleName()));
}
removed = true;
iterator.remove();
}