From 145d7a5bc20e72743fca2d167d3192a23ad10c4d Mon Sep 17 00:00:00 2001
From: WayofTime <wtime@live.ca>
Date: Fri, 17 Jun 2016 10:00:33 -0400
Subject: [PATCH] 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

---
 changelog.txt                                                | 1 +
 .../java/WayofTime/bloodmagic/tile/TileSpectralBlock.java    | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/changelog.txt b/changelog.txt
index ad0b113f..abcfa115 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -3,6 +3,7 @@ Version 2.0.2-45
 ------------------------------------------------------
 - Changed the recipe of the Sanguine Scientiem
 - Fixed the Routing system so that it properly eliminates the connection to the Master node when the Master node is broken.
+- 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.
 
 ------------------------------------------------------
 Version 2.0.2-44
diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java b/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java
index 44bc60b7..06e6aef9 100644
--- a/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java
+++ b/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java
@@ -68,6 +68,11 @@ public class TileSpectralBlock extends TileEntity implements ITickable
     @Override
     public void update()
     {
+        if (worldObj.isRemote)
+        {
+            return;
+        }
+
         ticksRemaining--;
 
         if (ticksRemaining <= 0)