Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Identify CLI as Fawe version
Dieser Commit ist enthalten in:
Ursprung
17a1c7e0bf
Commit
91ad0a20ef
@ -176,7 +176,9 @@ public class CLIWorldEdit {
|
|||||||
|
|
||||||
public void onInitialized() {
|
public void onInitialized() {
|
||||||
// Setup working directory
|
// Setup working directory
|
||||||
workingDir = Paths.get("worldedit");
|
//FAWE start - setup Fawe directory
|
||||||
|
workingDir = Paths.get("fastasyncworldedit");
|
||||||
|
//FAWE end
|
||||||
if (!Files.exists(workingDir)) {
|
if (!Files.exists(workingDir)) {
|
||||||
try {
|
try {
|
||||||
Files.createDirectory(workingDir);
|
Files.createDirectory(workingDir);
|
||||||
@ -187,7 +189,9 @@ public class CLIWorldEdit {
|
|||||||
|
|
||||||
this.commandSender = new CLICommandSender(this, LOGGER);
|
this.commandSender = new CLICommandSender(this, LOGGER);
|
||||||
this.platform = new CLIPlatform(this);
|
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() {
|
public void onStarted() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren