mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 12:33:57 +01:00
Merge pull request #6088 from cakeGit/patch-2
Added station blockstate check
This commit is contained in:
commit
5fc2153d52
@ -364,6 +364,10 @@ public class StationBlockEntity extends SmartBlockEntity implements ITransformab
|
||||
if (!tryEnterAssemblyMode())
|
||||
return false;
|
||||
|
||||
//Check the station wasn't destroyed
|
||||
if (!(level.getBlockState(worldPosition).getBlock() instanceof StationBlock))
|
||||
return true;
|
||||
|
||||
BlockState newState = getBlockState().setValue(StationBlock.ASSEMBLING, true);
|
||||
level.setBlock(getBlockPos(), newState, 3);
|
||||
refreshBlockState();
|
||||
|
Loading…
Reference in New Issue
Block a user