fix custom blocks not placing

This commit is contained in:
Julian Krings 2025-07-22 12:11:41 +02:00
parent f50e964d4f
commit 9d6e4e87d8
No known key found for this signature in database
GPG Key ID: 208C6E08C3B718D2

View File

@ -262,7 +262,7 @@ public interface Engine extends DataProvider, Fallible, LootProvider, BlockUpdat
getMantle().updateBlock(x, y, z);
}
if (data instanceof IrisCustomData) {
getMantle().getMantle().flag(x >> 4, z >> 4, MantleFlag.CUSTOM, true);
getMantle().getMantle().flag(x >> 4, z >> 4, MantleFlag.CUSTOM_ACTIVE, true);
}
}