mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-21 05:44:17 +00:00
Configuration files need to be .yml, not .yaml.
This commit is contained in:
parent
f3d7e390ae
commit
79a3d54eef
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ public abstract class JavaPlugin implements Plugin {
|
|||
*/
|
||||
public Configuration getConfiguration() {
|
||||
Configuration config =
|
||||
new Configuration(new File(dataFolder, "config.yaml"));
|
||||
new Configuration(new File(dataFolder, "config.yml"));
|
||||
config.load();
|
||||
return config;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue