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
17 lines
825 B
Java
17 lines
825 B
Java
package fun.bm.lophine.config.modules.misc;
|
|
|
|
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.MISC, name = "item-entity")
|
|
public class ItemEntityConfig implements IConfigModule {
|
|
@ConfigInfo(name = "follow-tick-sequence-merge", comments = """
|
|
Due to Paper's modification of the merge radius,
|
|
when the merge radius is large and stacks containing many items get stuck in an unexpected position,
|
|
individual items may never reach their destination.
|
|
This configuration option is added to fix this behavior.""")
|
|
public static boolean followTickSequenceMerge = false;
|
|
}
|