Update AutoCraftingTableBlockEntity.java (#2696)

to fix #2688
This commit is contained in:
xanthian 2021-12-30 20:40:23 +00:00 committed by GitHub
parent c4625762d1
commit 24a026778d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -409,6 +409,7 @@ public class AutoCraftingTableBlockEntity extends PowerAcceptorBlockEntity
@Override
public void writeNbt(NbtCompound tag) {
tag.putBoolean("locked", locked);
super.writeNbt(tag);
}
@Override