fix infusions

This commit is contained in:
okx-code
2024-11-16 17:14:14 +00:00
parent 5efedf180f
commit 242a6f382e

View File

@@ -40,10 +40,12 @@ public class InfusionManager {
CauldronInfusion infusion = iterator.next();
if (infusion.getCacheState() == CacheState.DELETED) {
iterator.remove();
continue;
}
Location location = infusion.getLocation();
if (!location.getChunk().isLoaded()) {
iterator.remove();
continue;
}
if (!isValidInfusion(infusion)) {