Fixed server sided issue with Attractor Array
Added Movement Array, and helped generalize the Arrays a bit more
This commit is contained in:
parent
22c1f0db55
commit
1836fc742d
11 changed files with 130 additions and 13 deletions
|
@ -56,6 +56,11 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect
|
|||
@Override
|
||||
public boolean update(TileEntity tile, int ticksActive)
|
||||
{
|
||||
if (tile.getWorld().isRemote)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
BlockPos pos = tile.getPos();
|
||||
counter++;
|
||||
if (counter < 10)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue