Fixed Spatial Pylon Initialization Bug.

This commit is contained in:
AlgorithmX2
2014-03-07 00:15:25 -06:00
parent a464686393
commit f918147b46
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ public class SpatialPylonCache implements IGridCache, ISpatialCache
IReadOnlyCollection<IGridNode> set = grid.getMachines( TileSpatialPylon.class );
for (IGridNode gm : set)
{
if ( gm.isActive() )
if ( gm.meetsChannelRequirements() )
{
SpatialPylonCluster c = ((TileSpatialPylon) gm.getMachine()).getCluster();
if ( c != null )