this is why we need an API

This commit is contained in:
Telesphoreo 2022-04-01 23:09:43 -05:00
parent c484f4b2b2
commit 0f898380db
1 changed files with 9 additions and 2 deletions

View File

@ -45,9 +45,16 @@ public class ModuleConfig extends YamlConfiguration
}
}
public void load() throws IOException, InvalidConfigurationException
public void load()
{
super.load(file);
try
{
super.load(file);
}
catch (IOException | InvalidConfigurationException ex)
{
ex.printStackTrace();
}
}
/**