mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-01-01 14:08:11 +01:00
Fixes #738
This commit is contained in:
parent
b2252a1cf6
commit
ee38f856e4
@ -103,7 +103,7 @@ public abstract class FaweParser<T> extends InputParser<T> {
|
||||
}
|
||||
if (newEntry) {
|
||||
newEntry = false;
|
||||
int index = StringMan.indexOf(command, i + prefix, '[', '&', ',');
|
||||
int index = StringMan.indexOf(command, Math.max(i, end) + prefix, '[', '&', ',');
|
||||
if (index < 0) index = len;
|
||||
end = index;
|
||||
current = command.substring(i + prefix, end);
|
||||
|
@ -30,7 +30,7 @@ public class Settings extends Config {
|
||||
public String LANGUAGE = "";
|
||||
@Comment("Allow the plugin to update")
|
||||
public boolean UPDATE = true;
|
||||
@Comment("Send anonymous usage statistics to mcstats.org")
|
||||
@Comment("Send anonymous usage statistics")
|
||||
public boolean METRICS = true;
|
||||
@Comment("FAWE will skip chunks when there's not enough memory available")
|
||||
public boolean PREVENT_CRASHES = false;
|
||||
|
Loading…
Reference in New Issue
Block a user