9761fde77d
WARNING: no patch merged, we will start merge later there are to many update between 1.21.11 and 26.1.2, so we need more time to build a base version which can stable to use
35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
package fun.bm.lophine.config.modules.function;
|
|
|
|
import com.electronwill.nightconfig.core.file.CommentedFileConfig;
|
|
import fun.bm.lophine.utils.RandomProfilePool;
|
|
import me.earthme.luminol.config.IConfigModule;
|
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
|
import me.earthme.luminol.config.flags.HotReloadUnsupported;
|
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.util.Set;
|
|
|
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "replay-api")
|
|
public class ReplayAPIConfig implements IConfigModule {
|
|
@HotReloadUnsupported
|
|
@ConfigInfo(name = "enable-cache")
|
|
public static boolean enableCache = true;
|
|
|
|
@HotReloadUnsupported
|
|
@ConfigInfo(name = "cache-photographer-time", comments = """
|
|
Time to cache photographer profile(in seconds)""")
|
|
public static int cachePhotographerTime = 3600;
|
|
|
|
@HotReloadUnsupported
|
|
@ConfigInfo(name = "cache-photographer-size", comments = """
|
|
Maximum size of cache photographer profile""")
|
|
public static int cachePhotographerSize = 100;
|
|
|
|
@Override
|
|
public void onLoaded(CommentedFileConfig configInstance, @Nullable Set<Exception> e) {
|
|
RandomProfilePool.init();
|
|
}
|
|
}
|