9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-21 07:49:18 +00:00

[ci-skip] compilation fixes №1

This commit is contained in:
NONPLAYT
2025-04-25 02:03:50 +03:00
parent c1379003ff
commit f3de39d91d
9 changed files with 33 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
package org.bxteam.divinemc.entity.pathfinding;
import net.minecraft.world.level.pathfinder.NodeEvaluator;
import org.apache.commons.lang.Validate;
import org.apache.commons.lang3.Validate;
import org.jetbrains.annotations.NotNull;
import java.util.Map;

View File

@@ -17,6 +17,7 @@ public interface IRegionFile extends AutoCloseable, ChunkSystemRegionFile {
void clear(ChunkPos pos) throws IOException;
@Override
void close() throws IOException;
void setOversized(int x, int z, boolean b) throws IOException;
@@ -31,6 +32,8 @@ public interface IRegionFile extends AutoCloseable, ChunkSystemRegionFile {
boolean recalculateHeader() throws IOException;
int getRecalculateCount();
DataOutputStream getChunkDataOutputStream(ChunkPos pos) throws IOException;
DataInputStream getChunkDataInputStream(ChunkPos pos) throws IOException;

View File

@@ -592,6 +592,11 @@ public class LinearRegionFile implements IRegionFile {
return false;
}
@Override
public int getRecalculateCount() {
return 0;
}
@Override
public void setOversized(int x, int z, boolean something) {
// stub