Change error to warning

This commit is contained in:
mcrcortex
2025-03-16 16:55:02 +10:00
parent ef389b7ed0
commit ba30742630

View File

@@ -243,7 +243,7 @@ public class NodeManager {
public void processChildChange(long pos, byte childExistence) {
int nodeId = this.activeSectionMap.get(pos);
if (nodeId == -1) {
Logger.error("Got child change for pos " + WorldEngine.pprintPos(pos) + " but it was not in active map, ignoring!");
Logger.warn("Got child change for pos " + WorldEngine.pprintPos(pos) + " but it was not in active map, ignoring!");
return;
}