Temporarily switched to non-threaded ticker for MC 1.6
This commit is contained in:
parent
45207ae2bb
commit
e5dcc4d5c0
2 changed files with 9 additions and 4 deletions
|
@ -126,6 +126,7 @@ public class PartQuantumGlyph extends JCuboidPart implements TSlottedPart, JNorm
|
|||
{
|
||||
if (ticks == 0)
|
||||
FrequencyGrid.instance().register((IQuantumGate) tile());
|
||||
|
||||
ticks++;
|
||||
|
||||
if (world().isRemote)
|
||||
|
@ -150,6 +151,7 @@ public class PartQuantumGlyph extends JCuboidPart implements TSlottedPart, JNorm
|
|||
if (!world().isRemote)
|
||||
{
|
||||
transport(player);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -163,11 +165,12 @@ public class PartQuantumGlyph extends JCuboidPart implements TSlottedPart, JNorm
|
|||
System.out.println(getQuantumTank());
|
||||
player.addChatMessage("Quantum Gate Frequency: " + frequency);
|
||||
}
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package resonantinduction.core.grid;
|
||||
|
||||
import universalelectricity.api.net.IUpdate;
|
||||
import universalelectricity.core.net.NetworkTickHandler;
|
||||
|
||||
public class TickingGrid<N extends Node> extends NodeGrid<N> implements IUpdate
|
||||
{
|
||||
|
@ -8,7 +9,8 @@ public class TickingGrid<N extends Node> extends NodeGrid<N> implements IUpdate
|
|||
{
|
||||
super(type);
|
||||
add(node);
|
||||
UpdateTicker.addNetwork(this);
|
||||
NetworkTickHandler.addNetwork(this);
|
||||
// UpdateTicker.addNetwork(this);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -18,7 +20,7 @@ public class TickingGrid<N extends Node> extends NodeGrid<N> implements IUpdate
|
|||
@Override
|
||||
public void update()
|
||||
{
|
||||
//synchronized (nodes)
|
||||
// synchronized (nodes)
|
||||
{
|
||||
for (Node node : nodes)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue