baseline of 26.1.2
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
This commit is contained in:
-8
@@ -3,7 +3,6 @@ package fun.bm.lophine.config.modules.experiment;
|
|||||||
import me.earthme.luminol.config.IConfigModule;
|
import me.earthme.luminol.config.IConfigModule;
|
||||||
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
||||||
import me.earthme.luminol.config.flags.ConfigInfo;
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
||||||
import me.earthme.luminol.config.flags.TransformedConfig;
|
|
||||||
import me.earthme.luminol.enums.EnumConfigCategory;
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
||||||
|
|
||||||
@ConfigClassInfo(category = EnumConfigCategory.EXPERIMENT, name = "command")
|
@ConfigClassInfo(category = EnumConfigCategory.EXPERIMENT, name = "command")
|
||||||
@@ -18,13 +17,6 @@ public class CommandConfig implements IConfigModule {
|
|||||||
Allow to use function command""")
|
Allow to use function command""")
|
||||||
public static boolean function = false;
|
public static boolean function = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "enable-waypoint", directory = {"experiment", "waypoint bar"})
|
|
||||||
@TransformedConfig(name = "enable-waypoint", directory = {"experiment", "waypoint_bar"})
|
|
||||||
@ConfigInfo(name = "waypoint_command_enabled", comments =
|
|
||||||
"""
|
|
||||||
Allow to use waypoint command and locator bar""")
|
|
||||||
public static boolean waypoint = false;
|
|
||||||
|
|
||||||
@ConfigInfo(name = "scoreboard_command_enabled", comments =
|
@ConfigInfo(name = "scoreboard_command_enabled", comments =
|
||||||
"""
|
"""
|
||||||
Allow to use scoreboard command""")
|
Allow to use scoreboard command""")
|
||||||
-2
@@ -13,14 +13,12 @@ import me.earthme.luminol.enums.EnumConfigCategory;
|
|||||||
*/
|
*/
|
||||||
@ConfigClassInfo(category = EnumConfigCategory.EXPERIMENT, name = "redstone")
|
@ConfigClassInfo(category = EnumConfigCategory.EXPERIMENT, name = "redstone")
|
||||||
public class RedStoneConfig implements IConfigModule {
|
public class RedStoneConfig implements IConfigModule {
|
||||||
@TransformedConfig(name = "enabled", directory = {"experiment", "redstone-ignore-upwards-update"})
|
|
||||||
@ConfigInfo(name = "redstone-ignore-upwards-update", comments = """
|
@ConfigInfo(name = "redstone-ignore-upwards-update", comments = """
|
||||||
Should the pre-1.20 mechanism be reintroduced:
|
Should the pre-1.20 mechanism be reintroduced:
|
||||||
Redstone dust does not connect to adjacent redstone dust on trapdoors that are open
|
Redstone dust does not connect to adjacent redstone dust on trapdoors that are open
|
||||||
Pre-1.20.2 mechanism: Redstone dust, redstone repeaters, and redstone comparators do not check for attachment when receiving status updates from below""")
|
Pre-1.20.2 mechanism: Redstone dust, redstone repeaters, and redstone comparators do not check for attachment when receiving status updates from below""")
|
||||||
public static boolean redstoneIgnoreUpwardsUpdate = false;
|
public static boolean redstoneIgnoreUpwardsUpdate = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "enabled", directory = {"experiment", "cce-update-suppression"})
|
|
||||||
@ConfigInfo(name = "cce-update-suppression", comments = """
|
@ConfigInfo(name = "cce-update-suppression", comments = """
|
||||||
Is it permissible to use ClassCastException for update suppression?""")
|
Is it permissible to use ClassCastException for update suppression?""")
|
||||||
public static boolean cce = false;
|
public static boolean cce = false;
|
||||||
-7
@@ -4,35 +4,28 @@ import me.earthme.luminol.config.IConfigModule;
|
|||||||
import me.earthme.luminol.config.flags.CommandSuggestions;
|
import me.earthme.luminol.config.flags.CommandSuggestions;
|
||||||
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
||||||
import me.earthme.luminol.config.flags.ConfigInfo;
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
||||||
import me.earthme.luminol.config.flags.TransformedConfig;
|
|
||||||
import me.earthme.luminol.enums.EnumConfigCategory;
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
||||||
|
|
||||||
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "container_expansion")
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "container_expansion")
|
||||||
public class ContainerExpansionConfig implements IConfigModule {
|
public class ContainerExpansionConfig implements IConfigModule {
|
||||||
@TransformedConfig(name = "barrel_rows", directory = {"misc", "container_expansion"})
|
|
||||||
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
||||||
@ConfigInfo(name = "barrel_rows", comments =
|
@ConfigInfo(name = "barrel_rows", comments =
|
||||||
"""
|
"""
|
||||||
range: 1~6""")
|
range: 1~6""")
|
||||||
public static int barrelRows = 3;
|
public static int barrelRows = 3;
|
||||||
|
|
||||||
@TransformedConfig(name = "enderchest_rows", directory = {"misc", "container_expansion"})
|
|
||||||
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
||||||
@ConfigInfo(name = "enderchest_rows", comments =
|
@ConfigInfo(name = "enderchest_rows", comments =
|
||||||
"""
|
"""
|
||||||
range: 1~6""")
|
range: 1~6""")
|
||||||
public static int enderchestRows = 3;
|
public static int enderchestRows = 3;
|
||||||
|
|
||||||
@TransformedConfig(name = "shulker_stackable_count", directory = {"function", "container_expansion"})
|
|
||||||
@TransformedConfig(name = "shulker_stackable_count", directory = {"misc", "container_expansion"})
|
|
||||||
@CommandSuggestions(suggest = {"1", "2", "32", "64"})
|
@CommandSuggestions(suggest = {"1", "2", "32", "64"})
|
||||||
@ConfigInfo(name = "shulker_stackable_count", directory = {"shulker_box"}, comments =
|
@ConfigInfo(name = "shulker_stackable_count", directory = {"shulker_box"}, comments =
|
||||||
"""
|
"""
|
||||||
range: 1~64""")
|
range: 1~64""")
|
||||||
public static int shulkerCount = 1;
|
public static int shulkerCount = 1;
|
||||||
|
|
||||||
@TransformedConfig(name = "same_nbt_shulker_stackable", directory = {"function", "container_expansion"})
|
|
||||||
@TransformedConfig(name = "same_nbt_shulker_stackable", directory = {"misc", "container_expansion"})
|
|
||||||
@ConfigInfo(name = "same_nbt_shulker_stackable", directory = {"shulker_box"})
|
@ConfigInfo(name = "same_nbt_shulker_stackable", directory = {"shulker_box"})
|
||||||
public static boolean nbtShulkerStackable = false;
|
public static boolean nbtShulkerStackable = false;
|
||||||
}
|
}
|
||||||
-2
@@ -3,12 +3,10 @@ package fun.bm.lophine.config.modules.function;
|
|||||||
import me.earthme.luminol.config.IConfigModule;
|
import me.earthme.luminol.config.IConfigModule;
|
||||||
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
||||||
import me.earthme.luminol.config.flags.ConfigInfo;
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
||||||
import me.earthme.luminol.config.flags.TransformedConfig;
|
|
||||||
import me.earthme.luminol.enums.EnumConfigCategory;
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
||||||
|
|
||||||
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "language")
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "language")
|
||||||
public class LanguageConfig implements IConfigModule {
|
public class LanguageConfig implements IConfigModule {
|
||||||
@TransformedConfig(name = "lang", directory = {"optimizations", "language"})
|
|
||||||
@ConfigInfo(name = "lang", comments = """
|
@ConfigInfo(name = "lang", comments = """
|
||||||
Please use the key from https://minecraft.wiki/w/Language
|
Please use the key from https://minecraft.wiki/w/Language
|
||||||
Sample of format: en_us zh_cn zh_hk zh_tw""")
|
Sample of format: en_us zh_cn zh_hk zh_tw""")
|
||||||
-9
@@ -3,31 +3,22 @@ package fun.bm.lophine.config.modules.function;
|
|||||||
import me.earthme.luminol.config.IConfigModule;
|
import me.earthme.luminol.config.IConfigModule;
|
||||||
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
||||||
import me.earthme.luminol.config.flags.ConfigInfo;
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
||||||
import me.earthme.luminol.config.flags.TransformedConfig;
|
|
||||||
import me.earthme.luminol.enums.EnumConfigCategory;
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
||||||
|
|
||||||
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "old-feature")
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "old-feature")
|
||||||
public class OldFeatureConfig implements IConfigModule {
|
public class OldFeatureConfig implements IConfigModule {
|
||||||
@TransformedConfig(name = "spawn_invulnerable_time", directory = {"misc", "old-feature"})
|
|
||||||
@ConfigInfo(name = "spawn_invulnerable_time")
|
@ConfigInfo(name = "spawn_invulnerable_time")
|
||||||
public static boolean spawnInvulnerableTime = false;
|
public static boolean spawnInvulnerableTime = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "old_zombie_reinforcement", directory = {"misc", "old-feature"})
|
|
||||||
@ConfigInfo(name = "old_zombie_reinforcement")
|
@ConfigInfo(name = "old_zombie_reinforcement")
|
||||||
public static boolean oldZombieReinforcement = false;
|
public static boolean oldZombieReinforcement = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "old_explosion_damage_calculator", directory = {"misc", "old-feature"})
|
|
||||||
@ConfigInfo(name = "old_explosion_damage_calculator")
|
@ConfigInfo(name = "old_explosion_damage_calculator")
|
||||||
public static boolean oldExplosionDamageCalculator = false;
|
public static boolean oldExplosionDamageCalculator = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "old_raid_behavior", directory = {"misc", "old-feature"})
|
|
||||||
@TransformedConfig(name = "give_bad_omen_when_kill_raid_captain", directory = {"misc", "revert_raid_changes"}, transformComments = false)
|
|
||||||
@ConfigInfo(name = "old_raid_behavior")
|
@ConfigInfo(name = "old_raid_behavior")
|
||||||
public static boolean oldRaidBehavior = false;
|
public static boolean oldRaidBehavior = false;
|
||||||
|
|
||||||
@TransformedConfig(name = "villager-infinite-trade", directory = {"function", "villager"}, transformComments = false)
|
|
||||||
@TransformedConfig(name = "villager-infinite-trade", directory = {"misc", "villager"}, transformComments = false)
|
|
||||||
@TransformedConfig(name = "villager-infinite-trade", directory = {"misc", "villager-config"}, transformComments = false)
|
|
||||||
@ConfigInfo(name = "villager-void-trade", comments =
|
@ConfigInfo(name = "villager-void-trade", comments =
|
||||||
"""
|
"""
|
||||||
Allow villager void trade.""")
|
Allow villager void trade.""")
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
package fun.bm.lophine.config.modules.function.protocol;
|
||||||
|
|
||||||
|
import me.earthme.luminol.config.IConfigModule;
|
||||||
|
import me.earthme.luminol.config.flags.CommandSuggestions;
|
||||||
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
||||||
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
||||||
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "servux", directory = {"protocol"})
|
||||||
|
public class ServuxProtocolConfig implements IConfigModule {
|
||||||
|
@ConfigInfo(name = "entity-protocol", directory = {"data"})
|
||||||
|
public static boolean entityProtocol = false;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "hud-logger-protocol")
|
||||||
|
public static boolean hudLoggerProtocol = false;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "hud-metadata-protocol")
|
||||||
|
public static boolean hudMetadataProtocol = false;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "hud-metadata-share-seed")
|
||||||
|
public static boolean hudMetadataShareSeed = false;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "structure-protocol")
|
||||||
|
public static boolean structureProtocol = false;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "hud-enabled-loggers")
|
||||||
|
public static List<String> hudEnabledLoggers = List.of("tps", "mob_caps");
|
||||||
|
|
||||||
|
@ConfigInfo(name = "hud-update-interval")
|
||||||
|
public static int hudUpdateInterval = 1;
|
||||||
|
|
||||||
|
@ConfigInfo(name = "litematics-enabled", directory = {"litematics"})
|
||||||
|
public static boolean litematicsEnabled = false;
|
||||||
|
|
||||||
|
@CommandSuggestions(suggest = {"-1", "2097152"})
|
||||||
|
@ConfigInfo(name = "litematics-max-nbt-size", directory = {"litematics"})
|
||||||
|
public static int litematicsMaxNbtSize = 2097152;
|
||||||
|
|
||||||
|
@CommandSuggestions(suggest = {"-1", "1200"})
|
||||||
|
@ConfigInfo(name = "litematics-print-max-delay-ticks", directory = {"litematics"}, comments = "The max delay ticks for printing litematics, -1 to disable")
|
||||||
|
public static int maxDelay = 1200;
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user