Fixed an issue where the Spectral Blocks (from the Sigil of Suppression) would return the liquid on the client side before the sigil was deactivated. Fixes #803
This commit is contained in:
parent
e89cb61bf9
commit
145d7a5bc2
2 changed files with 6 additions and 0 deletions
|
@ -68,6 +68,11 @@ public class TileSpectralBlock extends TileEntity implements ITickable
|
|||
@Override
|
||||
public void update()
|
||||
{
|
||||
if (worldObj.isRemote)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
ticksRemaining--;
|
||||
|
||||
if (ticksRemaining <= 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue