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
31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
package fun.bm.lophine.config.modules.function;
|
|
|
|
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;
|
|
|
|
@ConfigClassInfo(category = EnumConfigCategory.FUNCTION, name = "container_expansion")
|
|
public class ContainerExpansionConfig implements IConfigModule {
|
|
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
|
@ConfigInfo(name = "barrel_rows", comments =
|
|
"""
|
|
range: 1~6""")
|
|
public static int barrelRows = 3;
|
|
|
|
@CommandSuggestions(suggest = {"1", "2", "3", "4", "5", "6"})
|
|
@ConfigInfo(name = "enderchest_rows", comments =
|
|
"""
|
|
range: 1~6""")
|
|
public static int enderchestRows = 3;
|
|
|
|
@CommandSuggestions(suggest = {"1", "2", "32", "64"})
|
|
@ConfigInfo(name = "shulker_stackable_count", directory = {"shulker_box"}, comments =
|
|
"""
|
|
range: 1~64""")
|
|
public static int shulkerCount = 1;
|
|
|
|
@ConfigInfo(name = "same_nbt_shulker_stackable", directory = {"shulker_box"})
|
|
public static boolean nbtShulkerStackable = false;
|
|
} |