fixed aura field creator not accepting item frames

closes #324
This commit is contained in:
Ell 2023-09-19 22:27:46 +02:00
parent 19cd7dcbce
commit 433bd56957

View file

@ -21,7 +21,7 @@ import net.minecraftforge.api.distmarker.OnlyIn;
public class BlockFieldCreator extends BlockContainerImpl implements ICustomBlockState {
public BlockFieldCreator() {
super("field_creator", BlockEntityFieldCreator.class, Properties.of().strength(2F).noCollission().sound(SoundType.STONE));
super("field_creator", BlockEntityFieldCreator.class, Properties.of().strength(2F).noOcclusion().sound(SoundType.STONE));
}
@Override