更新
This commit is contained in:
@@ -1,16 +1,20 @@
|
||||
package com.ilummc.tlib.config;
|
||||
|
||||
import com.ilummc.tlib.annotations.Config;
|
||||
import com.ilummc.tlib.annotations.TConfig;
|
||||
|
||||
/**
|
||||
* @author sky
|
||||
* @since 2018-04-22 14:31:11
|
||||
*/
|
||||
@Config(name = "tlib.yml", listenChanges = true, readOnly = false)
|
||||
@TConfig(name = "tlib.yml", listenChanges = true)
|
||||
public class TLibConfig {
|
||||
|
||||
private boolean enablePlaceholderHookByDefault = false;
|
||||
|
||||
public void setEnablePlaceholderHookByDefault(boolean enablePlaceholderHookByDefault) {
|
||||
this.enablePlaceholderHookByDefault = enablePlaceholderHookByDefault;
|
||||
}
|
||||
|
||||
public boolean isEnablePlaceholderHookByDefault() {
|
||||
return enablePlaceholderHookByDefault;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user