mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-13 19:52:08 +01:00
System prop for default config comment parsing
Allows for certain legacy plugins to continue to work without changing by setting `Paper.parseYamlCommentsByDefault` to false
This commit is contained in:
parent
5024980442
commit
ee1a4b288c
@ -15,7 +15,10 @@ import org.jetbrains.annotations.Nullable;
|
||||
public class FileConfigurationOptions extends MemoryConfigurationOptions {
|
||||
private List<String> header = Collections.emptyList();
|
||||
private List<String> footer = Collections.emptyList();
|
||||
private boolean parseComments = true;
|
||||
// Paper start - add system prop for comment parsing
|
||||
private static final boolean PAPER_PARSE_COMMENTS_BY_DEFAULT = Boolean.parseBoolean(System.getProperty("Paper.parseYamlCommentsByDefault", "true"));
|
||||
private boolean parseComments = PAPER_PARSE_COMMENTS_BY_DEFAULT;
|
||||
// Paper end
|
||||
|
||||
protected FileConfigurationOptions(@NotNull MemoryConfiguration configuration) {
|
||||
super(configuration);
|
||||
|
Loading…
Reference in New Issue
Block a user