Fixed GridTickable bug.

This commit is contained in:
AlgorithmX2 2013-12-29 23:57:23 -06:00
parent f532e37986
commit e44bd923fc

View file

@ -46,6 +46,8 @@ public class TickTracker implements Comparable<TickTracker>
@Override @Override
public int compareTo(TickTracker t) public int compareTo(TickTracker t)
{ {
return (int) ((host.getCurrentTick() - lastTick) + current_rate); int nextTick = (int) ((lastTick - host.getCurrentTick()) + current_rate);
int ts_nextTick = (int) ((t.lastTick - host.getCurrentTick()) + t.current_rate);
return nextTick - ts_nextTick;
} }
}; };