Minor dynamic tank logic fix
This commit is contained in:
parent
aa69ba4bdf
commit
7f45043dec
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public class TileEntityDynamicTank extends TileEntityContainerBlock
|
|||
|
||||
public void update()
|
||||
{
|
||||
if(!worldObj.isRemote && structure == null || !structure.didTick)
|
||||
if(!worldObj.isRemote && (structure == null || !structure.didTick))
|
||||
{
|
||||
new TankUpdateProtocol(this).updateTanks();
|
||||
|
||||
|
|
Loading…
Reference in a new issue