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
14 lines
584 B
Java
14 lines
584 B
Java
package fun.bm.lophine.config.modules.fixes;
|
|
|
|
import me.earthme.luminol.config.IConfigModule;
|
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
|
|
|
@ConfigClassInfo(category = EnumConfigCategory.FIXES, name = "update-suppression-crash-fix")
|
|
public class UpdateSuppressionCrashFixConfig implements IConfigModule {
|
|
@ConfigInfo(name = "enabled", comments = """
|
|
Should crash caused by update suppression be prevented?""")
|
|
public static boolean enabled = true;
|
|
}
|