3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-03 09:18:03 +02:00

Identify CLI as Fawe version

Dieser Commit ist enthalten in:
NotMyFault 2021-09-07 01:06:22 +02:00
Ursprung 17a1c7e0bf
Commit 91ad0a20ef
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C

Datei anzeigen

@ -176,7 +176,9 @@ public class CLIWorldEdit {
public void onInitialized() {
// Setup working directory
workingDir = Paths.get("worldedit");
//FAWE start - setup Fawe directory
workingDir = Paths.get("fastasyncworldedit");
//FAWE end
if (!Files.exists(workingDir)) {
try {
Files.createDirectory(workingDir);
@ -187,7 +189,9 @@ public class CLIWorldEdit {
this.commandSender = new CLICommandSender(this, LOGGER);
this.platform = new CLIPlatform(this);
LOGGER.info("WorldEdit CLI (version " + getInternalVersion() + ") is loaded");
//FAWE start - identify as Fawe
LOGGER.info("FastAsyncWorldEdit CLI (version " + getInternalVersion() + ") is loaded");
//FAWE end
}
public void onStarted() {