15 lines
309 B
Java
15 lines
309 B
Java
package pm.j4.kerosene.util.config;
|
|
|
|
import java.util.Collections;
|
|
|
|
/**
|
|
* The type Default config.
|
|
*/
|
|
public class DefaultConfig extends GlobalConfig {
|
|
/**
|
|
* Instantiates a new Default config.
|
|
*/
|
|
public DefaultConfig() {
|
|
this.enabledModules = Collections.singletonList("petroleum.splashtext");
|
|
}
|
|
}
|