Luminol-Core/luminol-server/minecraft-patches/todo/RestoreVanillaEnderPearlBehaviorConfig.java
2026-06-30 18:32:29 +08:00

13 lines
567 B
Java

package me.earthme.luminol.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 = "restore_Vanilla_EnderPearl_Behavior")
public class RestoreVanillaEnderPearlBehaviorConfig implements IConfigModule {
@ConfigInfo(name = "enabled" , comments = "Restore Vanilla ender pearl behavior")
public static boolean enabled = true;
}