Compare commits

...

2 Commits

Author SHA1 Message Date
Bacteriawa 509e782d1a Update Upstream(Luminol) 2025-07-18 16:58:46 +08:00
Helvetica Volubi bfb5f74600 fix: fix a config name error 2025-07-17 21:43:24 +08:00
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ group=fun.bm.lophine
version=1.21.7-R0.1-SNAPSHOT
mcVersion=1.21.7
luminolRef=1cb5d158eaa29ff188ae9f09091d7fe6814df3dc
luminolRef=5ec3986e676e309dd9a406693f1e396c941c18f0
org.gradle.configuration-cache=true
org.gradle.caching=true
@@ -3,9 +3,11 @@ package fun.bm.lophine.config.modules.experiment;
import me.earthme.luminol.config.EnumConfigCategory;
import me.earthme.luminol.config.IConfigModule;
import me.earthme.luminol.config.flags.ConfigInfo;
import me.earthme.luminol.config.flags.TransformedConfig;
public class WaypointConfig implements IConfigModule {
@ConfigInfo(baseName = "enable-waypoint", comments =
@TransformedConfig(name = "enable-waypoint", category = {"experiment", "waypoint bar"})
@ConfigInfo(baseName = "enabled", comments =
"""
Enable waypoint bar unsafe""")
public static boolean forceEnableWaypointUnsafe = false;
@@ -17,6 +19,6 @@ public class WaypointConfig implements IConfigModule {
@Override
public String getBaseName() {
return "waypoint bar";
return "waypoint_bar";
}
}