9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-19 15:09:18 +00:00

move the loading block data message into debug

This commit is contained in:
Julian Krings
2025-09-10 17:02:51 +02:00
parent 2793ed1035
commit fca309dec7

View File

@@ -498,7 +498,7 @@ public class B {
if (!ix.startsWith("minecraft:") && ix.contains(":")) {
Identifier key = Identifier.fromString(ix);
Optional<BlockData> bd = Iris.service(ExternalDataSVC.class).getBlockData(key);
Iris.info("Loading block data " + key);
Iris.debug("Loading block data " + key);
if (bd.isPresent())
bx = bd.get();
}