This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/block/forcefield/ForcefieldBlock.java
TheBrokenRail fbb1020ce8
All checks were successful
EnergonRelics/pipeline/head This commit looks good
0.1.8
2020-08-20 19:03:47 -04:00

17 lines
501 B
Java

package com.thebrokenrail.energonrelics.block.forcefield;
import com.thebrokenrail.energonrelics.EnergonRelics;
import com.thebrokenrail.energonrelics.block.forcefield.util.AbstractFieldBlock;
import net.minecraft.block.BlockState;
public class ForcefieldBlock extends AbstractFieldBlock {
public ForcefieldBlock() {
super(true);
}
@Override
protected BlockState getProjectorBlockState() {
return EnergonRelics.Blocks.FORCEFIELD_PROJECTOR.getDefaultState();
}
}