From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: MrHua269 Date: Sun, 12 Jan 2025 12:29:28 +0800 Subject: [PATCH] Pufferfish Reduce projectile chunk loading diff --git a/src/main/java/me/earthme/luminol/config/modules/optimizations/ProjectileChunkReduceConfig.java b/src/main/java/me/earthme/luminol/config/modules/optimizations/ProjectileChunkReduceConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..12683ec5a5102e45b6171fea0b833ba57e5e188c --- /dev/null +++ b/src/main/java/me/earthme/luminol/config/modules/optimizations/ProjectileChunkReduceConfig.java @@ -0,0 +1,22 @@ +package me.earthme.luminol.config.modules.optimizations; + +import me.earthme.luminol.config.ConfigInfo; +import me.earthme.luminol.config.EnumConfigCategory; +import me.earthme.luminol.config.IConfigModule; + +public class ProjectileChunkReduceConfig implements IConfigModule { + @ConfigInfo(baseName = "max-loads-per-tick") + public static int maxProjectileLoadsPerTick; + @ConfigInfo(baseName = "max-loads-per-projectile") + public static int maxProjectileLoadsPerProjectile; + + @Override + public EnumConfigCategory getCategory() { + return EnumConfigCategory.OPTIMIZATIONS; + } + + @Override + public String getBaseName() { + return "projectile"; + } +}