mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-25 05:44:45 +01:00
Configuration files need to be .yml, not .yaml.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
c59341049f
commit
9ff3c115cc
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ public abstract class JavaPlugin implements Plugin {
|
||||||
*/
|
*/
|
||||||
public Configuration getConfiguration() {
|
public Configuration getConfiguration() {
|
||||||
Configuration config =
|
Configuration config =
|
||||||
new Configuration(new File(dataFolder, "config.yaml"));
|
new Configuration(new File(dataFolder, "config.yml"));
|
||||||
config.load();
|
config.load();
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue